码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode:Reverse Words in a String

时间:2014-10-16 01:05:21      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   sp   div   on   

 1 class Solution:
 2     # @param s, a string
 3     # @return a string
 4     def reverseWords(self, s):
 5         ss = s.split(" ")
 6         ss = filter(lambda x:x!="",ss)
 7         l = len(ss)
 8         for i in range(l/2):
 9             ss[i],ss[l-1-i] = ss[l-1-i],ss[i]
10         s = (" ").join(ss)
11         return s

为了去掉‘‘字符,尝试了好几种方法,最后还是用filter函数将其过滤掉了。

leetcode:Reverse Words in a String

标签:style   blog   color   io   ar   for   sp   div   on   

原文地址:http://www.cnblogs.com/CheeseZH/p/4027710.html

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