When to Use Recursion?
In this lesson, we will identify problems and areas where recursion should be used.
Nowadays, programming languages, including Haskell, Scala, and JavaScript, use Functional Programming which relies on recursion. Entire coding languages are now based on recursion.
An important note: recursion is not always the best method for solving a problem, even if it is possible to do ...