codeflash-internal/experiments/pie_test_set/p00006.py

8 lines
130 B
Python

def problem_p00006(input_data):
str = input_data
str_lis = list(str)
str_lis.reverse()
return "".join(str_lis)