码迷,mamicode.com
首页 > 编程语言 > 详细

【leetcode】Reverse Words in a String (python)

时间:2014-07-06 00:37:50      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:leetcode   algorithm   面试题   

陆陆续续几个月下来,终于把题刷完了,过程中遇到的python的题解很少,这里重新用python实现下,所以题解可能都是总结性的,或者是新的心得,不会仅针对题目本身说的太详细。

  def reverseWords(self, s):
        s = ' '.join(s.split()[::-1])
        return  s

[ : :  -1 ] 是将元素进行翻转

【leetcode】Reverse Words in a String (python),布布扣,bubuko.com

【leetcode】Reverse Words in a String (python)

标签:leetcode   algorithm   面试题   

原文地址:http://blog.csdn.net/shiquxinkong/article/details/36901553

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!