You are viewing a single comment's thread. Return to all comments →
Python3:
def reversePrint(head)
if head.next == None: print(head.data) return reversePrint(head.next) print(head.data)
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 →
Python3:
def reversePrint(head)