mycode
class Solution(object): def reverseString(self, s): """ :type s: List[str] :rtype: None Do not return anything, modify s in-place instead. """ s = s.reverse()
参考:更快
class Solution(object): def reverseString(self, s): """ :type s: List[str] :rtype: None Do not return anything, modify s in-place instead. """ temp = "" for i in range(len(s) / 2): temp = s[i] s[i] = s[len(s)-1-i] s[len(s)-1-i] = temp