- 方法一:
执行用时 :16 ms, 在所有Python提交中击败了98.94%的用户
内存消耗 :13.2 MB, 在所有Python提交中击败了6.40%的用户
class Solution(object):
def reverseWords(self, s):
"""
:type s: str
:rtype: str
"""
import re
s_list = re.split(r's+',s.strip())
s_list.reverse()
rev_s = ' '.join(s_list)
return rev_s