Skip to content

Commit 37d8481

Browse files
committed
Create 2485-find-the-pivot-integer.js
1 parent 453f713 commit 37d8481

File tree

1 file changed

+6
-17
lines changed

1 file changed

+6
-17
lines changed

javascript/2485-find-the-pivot-integer.js

+6-17
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,12 @@
44
*/
55
var pivotInteger = function (n) {
66

7-
// initialize function sum with parameter start and end to find sum between start and end and return num
8-
function sum(start, end) {
9-
let num = 0;
10-
for (let i = start; i <= end; i++) {
11-
num += i;
12-
}
13-
return num;
14-
}
7+
// calculate the total sum fo n
8+
const totalSum = n * (n + 1) / 2;
159

16-
// loop through the 1 to n
17-
for (let i = 1; i <= n; i++) {
10+
// find the square root of totalSum using Math.sqrt()
11+
const sqrtVal = Math.sqrt(totalSum);
1812

19-
// if sum of 1 to i and sum of i to n is equal then return i
20-
if (sum(1, i) == sum(i, n)) {
21-
return i;
22-
}
23-
}
24-
25-
return -1; // otherwise return -1
13+
// if sqrtVal is equal to round down value of sqrtVal then return round down value of sqrtVal otherwise -1
14+
return Math.floor(sqrtVal) === sqrtVal ? Math.floor(sqrtVal) : -1;
2615
};

0 commit comments

Comments
 (0)