File tree 1 file changed +6
-17
lines changed
1 file changed +6
-17
lines changed Original file line number Diff line number Diff line change 4
4
*/
5
5
var pivotInteger = function ( n ) {
6
6
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 ;
15
9
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 ) ;
18
12
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 ;
26
15
} ;
You can’t perform that action at this time.
0 commit comments