def process(input_strings: list) -> list: """反转输入字符串""" return [input_strings[0][::-1]]