1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-10-18 10:42:08 +02:00
CodeWars/7kyu/dont_give_me_five/solution.py

3 lines
120 B
Python
Raw Normal View History

def dont_give_me_five(start,end):
return len(list(filter(lambda s: not '5' in s, map(str, range(start, end + 1)))))