题目描述:
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(self, s):
"""
:type s: str
:rtype: str
"""
return s[::-1]
或者:
class Solution(object):
def reverseString(self, s):
"""
:type s: str
:rtype: str
"""
return ''.join(reversed(s))
本文链接:http://bookshadow.com/weblog/2016/04/22/leetcode-reverse-string/
请尊重作者的劳动成果,转载请注明出处!书影博客保留对文章的所有权利。