github我的刷题 https://github.com/chaor/LeetCode_Python_Accepted | 我翻译的python3.4官网教程 kitt.me/py3
Python处理字符串的巨大优势。
class Solution: # @param s, a string # @return a string def reverseWords(self, s): return ' '.join(s.split()[::-1])