3 lines
109 B
Python
3 lines
109 B
Python
![]() |
def process(input_strings: list) -> list:
|
||
|
"""反转输入字符串"""
|
||
|
return [input_strings[0][::-1]]
|