Decode Ways @ LeetCode (Python)
Convert Sorted Array to Binary Search Tree @ LeetCode (Python)

Reverse Words in a String @ LeetCode (Python)

kitt posted @ 2014年3月07日 18:06 in LeetCode , 2194 阅读

Python处理字符串的巨大优势。

class Solution:
    # @param s, a string
    # @return a string
    def reverseWords(self, s):
        return ' '.join(s.split()[::-1])

登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter