Knot Knowledge

This commit is contained in:
2023-07-02 23:43:54 +02:00
parent 575278be6e
commit 7973279c5e

4
knotknowledge.py Normal file
View File

@@ -0,0 +1,4 @@
_ = input()
knots = set(map(int, input().split()))
learnedknots = set(map(int, input().split()))
print(list(knots.difference(learnedknots))[0])