When to Use Recursion?

In this lesson, we identify areas where recursion is used.

Nowadays, many programming languages such as Haskell, Scala, JavaScript, etc. use Functional Programming. An important concept of functional programming is recursion. Entire languages are now being based on recursion.

In general, problems that can be solved with a non-recursive code can also be ...