Recursion

Recursion is a technique in which a procedure solves a problem by calling itself on smaller instances. It requires a stopping condition to prevent calls from continuing indefinitely.

Connect