You are viewing a single comment's thread. Return to all comments →
A Python3 version
def reversePrint(head): if head: reversePrint(head.next) print(str(head.data)) else: return
Seems like cookies are disabled on this browser, please enable them to open this website
Print in Reverse
You are viewing a single comment's thread. Return to all comments →
A Python3 version