Welcome to CS1315. Click on the python to add comments.
This page removed for FERPA compliance
Fall 2005 Final Review - Recursion
Any help?
Where do we have exmaples of recursion? The book only shows 1 example. REMOVEDw should we know how to do them all?
wow TA's thanks for the big help....
reversing a string
def flip(word):
if len(word = 1:
return word
else:
return flip(word[1:])+ word[0]