-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMissingNumbersInPython.py
59 lines (40 loc) · 1.08 KB
/
MissingNumbersInPython.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/python3
import math
import os
import random
import re
import sys
from collections import Counter
#
# Complete the 'missingNumbers' function below.
#
# The function is expected to return an INTEGER_ARRAY.
# The function accepts following parameters:
# 1. INTEGER_ARRAY arr
# 2. INTEGER_ARRAY brr
#
def missingNumbers(arr, brr):
# Write your code here
diff = []
new_brr = brr
for i in list(set(brr)):
if i not in list(set(arr)):
diff.append(i)
new_brr.remove(i)
arr_count = Counter(arr)
brr_count = Counter(new_brr)
for i in list(set(arr)):
if brr_count[i] > arr_count[i]:
diff.append(i)
diff.sort()
return diff
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
n = int(input().strip())
arr = list(map(int, input().rstrip().split()))
m = int(input().strip())
brr = list(map(int, input().rstrip().split()))
result = missingNumbers(arr, brr)
fptr.write(' '.join(map(str, result)))
fptr.write('\n')
fptr.close()