You are viewing a single comment's thread. Return to all comments →
def compare_lists(llist1, llist2): if llist1 is None and llist2 is None: return 1 elif llist1 is None or llist2 is None: return 0 elif llist1.data == llist2.data: return compare_lists(llist1.next, llist2.next) return 0
Seems like cookies are disabled on this browser, please enable them to open this website
Compare two linked lists
You are viewing a single comment's thread. Return to all comments →