Rekurzíve
Rekurzíve is a programming concept where a function calls itself. This self-referential process allows for elegant solutions to problems that can be broken down into smaller, similar subproblems. Think of it like a set of Russian nesting dolls, where each doll contains a smaller version of itself.
A recursive function typically has two main parts: a base case and a recursive step. The base
Common examples of problems solved using recursion include calculating factorials, traversing tree data structures, and implementing