add: swea/5431.py
This commit is contained in:
9
swea/5431.py
Normal file
9
swea/5431.py
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
t=int(input())
|
||||||
|
for tc in range(1,t+1):
|
||||||
|
n,k=map(int,input().split())
|
||||||
|
sm=set(map(int,input().split()))
|
||||||
|
nsm=[]
|
||||||
|
for i in range(1,n+1):
|
||||||
|
if not i in sm:
|
||||||
|
nsm.append(i)
|
||||||
|
print("#"+str(tc),*nsm)
|
||||||
Reference in New Issue
Block a user