
codewars
文章平均质量分 50
shitfly
啥也不会
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
codewars day1
1.Find The Parity Outlier Description:You probably know the “like” system from Facebook and other pages. People can “like” blog posts, pictures or other items. We want to create the text that should b原创 2017-04-20 13:19:54 · 459 阅读 · 0 评论 -
codewars2
RGB To Hex Conversion def rgb(r,g,b): sixteen={1:'1', 2:'2', 3:'3', 4:'4', 5:'5', 6:'6', 7:'7', 8:'8',原创 2017-05-06 11:40:09 · 352 阅读 · 0 评论 -
codewars3
Where my anagrams at? def anagrams(word,words): lword=list(word) lword.sort() new=[] for i in range(len(words)): lwords=list(words[i]) lwords.sort() if lword原创 2017-05-08 16:27:29 · 354 阅读 · 0 评论 -
codewars4
Recover a secret string from random triplets def recoverSecret(triplets): res='' while triplets!=[]: non_firsts=[num for t in triplets for num in t[1:]] firsts=[t[0] for t i原创 2017-05-16 20:12:13 · 558 阅读 · 0 评论