Leetcode 344.反转字符串 By Python

请编写一个函数,其功能是将输入的字符串反转过来。

示例:

输入:s = "hello"
返回:"olleh"

思路

Python里面的切片用来解决这个问题就很快了,仅仅一行就实现了反转字符串!

赞美Python!

class Solution:
def reverseString(self, s):
"""
:type s: str
:rtype: str
"""
return s[::-1]
上一篇:JAVA 根据数据库表内容生产树结构JSON数据


下一篇:pythonchallenge 解谜 Level 1