boj step 6 rework

This commit is contained in:
2024-03-11 18:20:08 +09:00
parent a0e5f95027
commit dc13061bf2
4 changed files with 72 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
print(""" ,r'"7
r`-_ ,' ,/
\. ". L_r'
`~\/
|
|""")

View 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)))