mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
8 lines
182 B
Python
8 lines
182 B
Python
def bumps(road):
|
|
count = 0
|
|
for part in road:
|
|
if part == "n":
|
|
count += 1
|
|
if count > 15:
|
|
return "Car Dead"
|
|
return "Woohoo!"
|