Comment on Why does the for loop repeat in this recursion?
Merwyn@sh.itjust.works 11 months agoWhen called with n=1 ? It’s from i=0 to i<1, so it will do only one iteration with i=0 and print one #.
Comment on Why does the for loop repeat in this recursion?
Merwyn@sh.itjust.works 11 months agoWhen called with n=1 ? It’s from i=0 to i<1, so it will do only one iteration with i=0 and print one #.