You are viewing a single comment's thread. Return to all comments →
Here is my Python solution!
def missingNumbers(arr, brr): arr = Counter(arr) brr = Counter(brr) missing = [] for num in brr.keys(): if arr[num] < brr[num]: missing.append(num) return sorted(list(set(missing)))
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 →
Here is my Python solution!