文章分类 - Checkio
python编程练习
摘要:题目: Try to find out how many zeros a given number has at the end. Input: A positive Int Output: An Int. Example: end_zeros(0) == 1 end_zeros(1) == 0 e
阅读全文
摘要:题目: Input: a list of strings. Output: a string. Example: most_frequent([ 'a', 'b', 'c', 'a', 'b', 'a' ]) == 'a' most_frequent(['a', 'a', 'bi', 'bi', '
阅读全文