1. 程式人生 > >leetcode - 344 - 反轉字串

leetcode - 344 - 反轉字串

class Solution:
    def reverseString(self, s):
        """
        :type s: str
        :rtype: str
        """
        L = len(s)
        out = ""
        for i in range(L):
            j = L - 1 - i
            out += s[j]
        return out


 # 使用切片更簡單   s[: : -1]