From 1f0b6b99f92ca798c57f2897e24ceb3f0c514ed3 Mon Sep 17 00:00:00 2001 From: Yoonseo Kim Date: Wed, 5 Jan 2022 23:46:35 +0900 Subject: [PATCH] =?UTF-8?q?=EC=99=95=EC=8B=A4=EC=9D=98=20=EB=82=98?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8=20(#3)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Chapter 4/4-3.py" | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 "Algorithm/\354\235\264\352\262\203\354\235\264 \354\267\250\354\227\205\354\235\204 \354\234\204\355\225\234 \354\275\224\353\224\251 \355\205\214\354\212\244\355\212\270\353\213\244/Chapter 4/4-3.py" diff --git "a/Algorithm/\354\235\264\352\262\203\354\235\264 \354\267\250\354\227\205\354\235\204 \354\234\204\355\225\234 \354\275\224\353\224\251 \355\205\214\354\212\244\355\212\270\353\213\244/Chapter 4/4-3.py" "b/Algorithm/\354\235\264\352\262\203\354\235\264 \354\267\250\354\227\205\354\235\204 \354\234\204\355\225\234 \354\275\224\353\224\251 \355\205\214\354\212\244\355\212\270\353\213\244/Chapter 4/4-3.py" new file mode 100644 index 0000000..08decde --- /dev/null +++ "b/Algorithm/\354\235\264\352\262\203\354\235\264 \354\267\250\354\227\205\354\235\204 \354\234\204\355\225\234 \354\275\224\353\224\251 \355\205\214\354\212\244\355\212\270\353\213\244/Chapter 4/4-3.py" @@ -0,0 +1,13 @@ +n = input() +x, y = ord(n[0])-ord('a') + 1, int(n[1]) +print(x, y) +count = 0 + +locations = [[2, 1], [2, -1], [-2, 1], [-2, -1], [1, 2], [1, -2], [-1, 2], [-1, -2]] + +for location in locations: + print(x + location[0], y + location[1]) + if 1 <= x + location[0] <= 8 and 1 <= y + location[1] <= 8: + count += 1 + +print(count) \ No newline at end of file