Skip to content

Commit 44108ed

Browse files
committed
[#7] Feat: Add 킹, 퀸, 룩, 비숍, 나이트, 폰
1 parent ed37b60 commit 44108ed

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

3003.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# 킹, 퀸, 룩, 비숍, 나이트, 폰
2+
3+
chess = [1, 1, 2, 2, 2, 8]
4+
index = 0
5+
pieces = list(map(int, input().split()))
6+
7+
for piece in pieces:
8+
pieces[index] = str(chess[index]-piece)
9+
index += 1
10+
11+
print(' '.join(pieces))

0 commit comments

Comments
 (0)