VTS interview question

What is recursion in Python?

Interview Answer

Anonymous

Jun 15, 2024

ecursion is a function calling itself to solve a smaller instance of the same problem. Example: calculating the factorial of a number

1