mirror of
https://github.com/efecini/mooniversity_examples.git
synced 2025-04-19 10:51:21 +00:00
my.py is deleted
This commit is contained in:
parent
0cedd811fa
commit
4d61ae9b08
24
my2.py
24
my2.py
@ -1,24 +0,0 @@
|
||||
"""
|
||||
_ = set(map(int, input().split()))
|
||||
arr = input().split()
|
||||
s1 = set(map(int, input().split()))
|
||||
s2 = set(map(int, input().split()))
|
||||
|
||||
print(s1)
|
||||
print(s2)
|
||||
print(s3)
|
||||
print(sum([(i in s1)-(i in s2) for i in arr]))
|
||||
|
||||
n, m = raw_input().split()
|
||||
|
||||
sc_ar = raw_input().split()
|
||||
|
||||
A = set(raw_input().split())
|
||||
B = set(raw_input().split())
|
||||
print sum([(i in A) - (i in B) for i in sc_ar])
|
||||
"""
|
||||
A = set(input().split())
|
||||
B = set(input().split())
|
||||
print(A)
|
||||
print(B)
|
||||
print(A.issuperset(B))
|
Loading…
x
Reference in New Issue
Block a user