You are viewing a single comment's thread. Return to all comments →
def missingNumbers(arr, brr):
for a in arr: brr.remove(a) return sorted(set(brr))
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 →
def missingNumbers(arr, brr):