mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
9 lines
182 B
Python
9 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!"
|