0
How to dry rur iteration of a recursive function
3 Answers
+ 12
Highly depends on your recursive function...
function recur(number):
if number <= 0:
return 1
else:
return recur(2 * recur(number))
end
end
that pseudo code is as dry as it can get
+ 10
Hatsy Rei i thought the poster misspelled your with rur -_-
+ 4
That brings up some memories.
https://www.sololearn.com/Discuss/304897/?ref=app