You are viewing a single comment's thread. Return to all comments →
python 3
from collections import Counter def missingNumbers(arr, brr): org = Counter(brr) miss = Counter(arr) missing = [] for num, count in org.items(): if miss[num] < count: missing.append(num) return sorted(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 →
python 3