Recursion
Term side of the Card
Topic: Various
Unit title: Recursion
Categories: Technique
Explanation side of the Card
Explanation: The process where a function calls itself with smaller inputs to solve a problem. Commonly used in problems that can be broken down into similar subproblems, like tree traversal or factorial calculation.