recursive case
RU: рекурсивный случай
The part of a recursive function that calls itself on a smaller input, making progress toward the base case. Example: in factorial, return n * factorial(n - 1).
RU: рекурсивный случай
The part of a recursive function that calls itself on a smaller input, making progress toward the base case. Example: in factorial, return n * factorial(n - 1).