Skip to content

Commit a32b8c8

Browse files
committed
Finish question A
1 parent 2610b20 commit a32b8c8

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed
Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
11
"""
22
https://atcoder.jp/contests/abc266/tasks/abc266_a
3-
"""
3+
"""
4+
5+
6+
class Solution:
7+
@staticmethod
8+
def find_middle_letter(s: str) -> str:
9+
return s[len(s)//2]
10+
11+
12+
if __name__ == '__main__':
13+
S = input()
14+
print(Solution.find_middle_letter(S))

0 commit comments

Comments
 (0)