[READ-ONLY] Mirror of https://github.com/shuuji3/competitive-programming. 馃洬 Codes submitted to competitive programming platforms
aizu-online-jadge aoj atcoder hackerrank leetcode
0

Configure Feed

Select the types of activity you want to include in your feed.

1import string 2 3def toggle_case(c): 4 if not c in string.ascii_letters: 5 return c 6 return string.ascii_letters[(string.ascii_letters.index(c) + 26) % 52] 7 8s = input() 9print(''.join(map(toggle_case, s)))