We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
I think, you can just do the difference between the Counter objects.
def missingNumbers(arr, brr):
arr = Counter(arr)
brr = Counter(brr)
missing = brr - arr
return sorted(list(missing))
Missing Numbers
You are viewing a single comment's thread. Return to all comments →
I think, you can just do the difference between the Counter objects. def missingNumbers(arr, brr): arr = Counter(arr) brr = Counter(brr) missing = brr - arr return sorted(list(missing))
I'm not very familiar with Counter objects so I didn't know this existed.