You are viewing a single comment's thread. Return to all comments →
def missingNumbers(arr, brr): answer = [] for element in arr: if element in brr: brr.pop(brr.index(element)) else: if element not in answer: answer.append(element) for element in brr: if element not in answer: answer.append(element) answer.sort() return answer
Seems like cookies are disabled on this browser, please enable them to open this website
Missing Numbers
You are viewing a single comment's thread. Return to all comments →