Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
ditto
Please don't post solutions in Discourse section, there's Solutions tab for that.
english speakers this is what he means:
If you are a Spanish speaker, keep in mind that if you translate it from English to Spanish, the description will make you a bad move, confusing you with kilometer and miles, but really only miles are driven, you don't have to convert miles to kilometers, you just have to calculate the autonomy of the vehicle
def zero_fuel(distance_to_pump, mpg, fuel_left):
a = distance_to_pump - (fuel_left * mpg)
if a <= 0:
return True
else:
return False
the dictionary is too long lol
luckily im a nerd so got it right in less then a minute
fix the test cases
This comment is hidden because it contains spoiler information about the solution
very easy