restructure zeta/** to storage/zeta/**
This commit is contained in:
10
storage/zeta/py/completed/3003.py
Normal file
10
storage/zeta/py/completed/3003.py
Normal file
@@ -0,0 +1,10 @@
|
||||
chess_set = [1, 1, 2, 2, 2, 8, ]
|
||||
|
||||
my_set = list(map(int, input().split()))
|
||||
|
||||
delta_set = []
|
||||
|
||||
for u, v in zip(chess_set, my_set):
|
||||
delta_set.append(u - v)
|
||||
|
||||
print(" ".join(map(str, delta_set)))
|
||||
Reference in New Issue
Block a user