+ 2
loops and recursion!?
hello, when we use a combinaition of loops and recursion is that called a 'recursive' or 'iterative' methode?? Please some advice because I fell in mistakes once I use a recusion call inside a for loop
2 Answers
+ 6
Iteration and recursion will have the same effect - looping.
My advice is not to use recursion inside iteration and iteration inside recursion.
+ 2
okey Thank u I'll do that next time