题目描述:
Write a function that takes a string as input and returns the string reversed.
Example:
Given s = "hello", return "olleh".
题目大意:
编写函数输入字符串,返回其逆置。
例如输入s = "hello",返回"olleh"。
解题思路:
简单题,略。
Python代码:
class Solution(object):
def reverseString ...