摘要: 题目:我的解法: 1 def checkio(text): 2 import string 3 str = text.encode().lower() 4 adict = {} 5 for i in string.lowercase[::-1]: 6 ... 阅读全文
posted @ 2015-04-09 19:23 小名辉辉 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 我的解决方式:1 def checkio(data):2 alist = []3 for i in data:4 if (data.count(i) >1 ):5 alist.append(i)6 7 return a... 阅读全文
posted @ 2015-04-09 17:23 小名辉辉 阅读(238) 评论(0) 推荐(0) 编辑