Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 255 Bytes

344.md

File metadata and controls

12 lines (11 loc) · 255 Bytes

344. Reverse String

题目链接

class Solution(object):
    def reverseString(self, s):
        """
        :type s: str
        :rtype: str
        """
        return s[::-1]