Understanding a Recursive Problem
In this lesson, we'll learn methods to understand and visualize a recursive function.
Understanding the Problem
In the previous lessons, we learned the basic concept of recursion, what it is and when it can be used. Now, we will discuss how recursion works.
Let’s have a look at an example. The code below prints a pattern, that subtracts from the targetNumber
until we reach a negative number or . Then we add until we reach the targetNumber
again.
For example:
If targetNumber
, then our pattern will be
.
If targetNumber
, then our pattern will be .
Level up your interview prep. Join Educative to access 80+ hands-on prep courses.