You are viewing a single comment's thread. Return to all comments →
Python3
def missingNumbers(arr, brr): # Write your code here diff = Counter(brr) - Counter(arr) return sorted(diff.keys())
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 →
Python3