You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* You will be given a number N that represents where the minute hand currently is on a clock.
54
+
* Problem: You will be given a number N that represents where the minute hand currently is on a clock.
5
55
* Your program should return the angle that is formed by the minute hand and the 12 o'clock mark on the clock.
6
56
*/
7
57
@@ -15,8 +65,7 @@ function simpleClockAngle(number) {
15
65
16
66
/**
17
67
* Q004: Sum of several arrays
18
-
* Problem
19
-
* You will be given an array of several arrays that each contain integers and your goal is to write a function that will sum up all the numbers in all the arrays.
68
+
* Problem: You will be given an array of several arrays that each contain integers and your goal is to write a function that will sum up all the numbers in all the arrays.
20
69
* For example, if the input is [[3, 2], [1], [4, 12]] then your program should output 22 because 3 + 2 + 1 + 4 + 12 = 22. Solve without and with reduce.
0 commit comments