mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
5 lines
136 B
C++
5 lines
136 B
C++
|
bool zero_fuel(uint32_t distance_to_pump, uint32_t mpg, uint32_t fuel_left)
|
||
|
{
|
||
|
return (distance_to_pump / (float) mpg) <= fuel_left;
|
||
|
}
|