Computer Science

What is recursive case?

Python Functions

1 Like

Answer

Recursive case is the case where the function calls itself with a modified input, moving towards the base case. It allows the function to break down the problem into smaller instances of the same problem until reaching the base case.

Answered By

3 Likes


Related Questions