what is the characteristic of recursion? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

what is the characteristic of recursion?

1. One or more simple cases.

3rd Sep 2019, 6:45 AM
Avishek
Avishek - avatar
2 Answers
+ 5
Recursion is when a function calls itself, inside itself. Kind of confusing to think of it. Kinda like a neverending downward spiral that only ends when it reaches an exit condition While its a little bit confusing, it can be used to simply solve a bunch of problems, the most popular of which is the Factorial https://code.sololearn.com/cR5vZ2Im19DB/?ref=app
3rd Sep 2019, 6:49 AM
Trigger
Trigger - avatar
+ 1
In simple words, it's a function calling itself. You can refer to some famous recursion cases : factorial numbers and Fibonacci number
3rd Sep 2019, 4:41 PM
Joey Lim
Joey Lim - avatar