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

most-wanted-letter

时间:2015-04-09 21:34:13      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

题目:

技术分享

我的解法:

 1 def checkio(text):
 2     import string
 3     str = text.encode().lower()
 4     adict = {}
 5     for i in  string.lowercase[::-1]:
 6         if (str.count(i) > 0 ):
 7             adict[i] = str.count(i)
 8     tmp = max(adict.values())
 9     tmpch = z
10     for x in adict:
11         if tmp == adict[x]:
12             print x
13             if tmpch > x:
14                 print x
15                 tmpch = x
16     return tmpch

 

感觉还不错的解法:

1 def checkio(s):
2     s = s.lower()
3     l = list(set((x,s.count(x)) for x in s if x.islower()))
4     l.sort(key = lambda x: (-x[1],x[0]))
5     return l[0][0]

 

most-wanted-letter

标签:

原文地址:http://www.cnblogs.com/canxuexiecheng/p/4411075.html

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