Leetcode 344.反转字符串 By Python
Posted MartinLwx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 344.反转字符串 By Python相关的知识,希望对你有一定的参考价值。
请编写一个函数,其功能是将输入的字符串反转过来。
示例:
输入:s = "hello"
返回:"olleh"
思路
Python里面的切片用来解决这个问题就很快了,仅仅一行就实现了反转字符串!
赞美Python!
class Solution:
def reverseString(self, s):
"""
:type s: str
:rtype: str
"""
return s[::-1]
以上是关于Leetcode 344.反转字符串 By Python的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode 344:Reverse String 反转字符串(pythonjava)