Skip to content

Commit 46b8f15

Browse files
Create 0374-guess-number-higher-or-lower.js
1 parent 2d0e0cc commit 46b8f15

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
var guessNumber = function(n) {
2+
let low = 1;
3+
let high = n;
4+
5+
while(true) {
6+
let mid = low + Math.floor((high - low)/2);
7+
let myGuess = guess(mid);
8+
if(myGuess == 1)
9+
low = mid + 1;
10+
else if(myGuess == -1)
11+
high = mid - 1;
12+
else
13+
return mid;
14+
}
15+
};

0 commit comments

Comments
 (0)