mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
2 lines
120 B
Python
2 lines
120 B
Python
def dont_give_me_five(start,end):
|
|
return len(list(filter(lambda s: not '5' in s, map(str, range(start, end + 1)))))
|