mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
10 lines
167 B
Python
10 lines
167 B
Python
def problem_p02836(input_data):
|
|
s = eval(input_data)
|
|
|
|
res = 0
|
|
|
|
for i in range(len(s) // 2):
|
|
|
|
res += int(s[i] != s[len(s) - i - 1])
|
|
|
|
return res
|