-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
bikeTimer.js
42 lines (27 loc) · 1.32 KB
/
bikeTimer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
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 be
lateRide(n) === 4
Since 240 minutes have passed, the current time is 04:00. The digits sum up to 0 + 4 + 0 + 0 = 4, which is the answer.
For n = 808, the output should be
lateRide(n) === 14
808 minutes mean that it's 13:28 now, so the answer should be 1 + 3 + 2 + 8 = 14.
Input/Output
[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).
Constraints: 0 ≤ n < 60 * 24.
[output] an integer
The sum of the digits the digital timer would show.
*/
//Answer//
function lateRide(n) {
return (''+Math.floor((n/60))+(n%60)).split('').map(Number).reduce((a,b)=>{return a+b})
}