Late Ride
Description
One night you go for a ride on your motorcycle. At 00:00
you start your engine, and the built-in timer automatically begins counting the length of your ride, in minutes. Off you go to explore the neighborhood.
When you finally decide to head back, you realize there’s a chance the bridges on your route home are up, leaving you stranded! Unfortunately, you don’t have your watch on you and don’t know what time it is. All you know thanks to the bike’s timer is that n
minutes have passed since 00:00
.
Using the bike’s timer, calculate the current time. Return an answer as the sum of digits that the digital timer in the format hh:mm
would show.
Example
-
For
n = 240
, the output should belateRide(n) = 4
.
Since240
minutes have passed, the current time is04:00
. The digits sum up to0 + 4 + 0 + 0 = 4
, which is the answer. -
For
n = 808
, the output should belateRide(n) = 14
.
808
minutes mean that it’s13:28
now, so the answer should be1 + 3 + 2 + 8 = 14
.
Input/Output
-
[execution time limit] 4 seconds (js)
-
[input] integer n
The duration of your ride, in minutes. It is guaranteed that you’ve been riding for less than a day (24 hours).
Guaranteed constraints:
0 \leq n \le 60 · 24
. -
[output] integer
- The sum of the digits the digital timer would show.
[JavaScript (ES6)] Syntax Tips
1
2
3
4
5
6
// Prints help message to the console
// Returns a string
function helloWorld(name) {
console.log("This prints to the console when you Run Tests");
return "Hello, " + name;
}
Solution
1
2
3
function lateRide(n) {
return (Math.floor(n / 60) + '' + (n % 60)).split('').map(Number).reduce((a, b) => a + b);
}