You are viewing a single comment's thread. Return to all comments →
def compare_lists(llist1, llist2): while llist1 or llist2: if llist1.data == llist2.data and (llist1_count == llist2_count): llist1 = llist1.next llist2 = llist2.next else: return 0 return 1
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 →