@663,199
> Anything that can be done using recursion can be done with iteration.
Yeah, those done with iterations instead of recursions are called imperative, recursions also rely on the call stack so it's no wonder (it can be done with
.push()
/
.pop()
).