-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee232d7
commit afd1145
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/** | ||
* Forward declaration of guess API. | ||
* @param num your guess | ||
* @return -1 if num is higher than the picked number | ||
* 1 if num is lower than the picked number | ||
* otherwise return 0 | ||
* int guess(int num); | ||
*/ | ||
|
||
class Solution { | ||
public: | ||
int guessNumber(int n) { | ||
int left = 1; | ||
int right = n; | ||
|
||
while (left <= right) { | ||
int mid = left + (right - left) / 2; | ||
int res = guess(mid); | ||
if (res == 0) { | ||
return mid; | ||
} else if (res == 1) { | ||
left = mid + 1; | ||
} else if (res == -1) { | ||
right = mid - 1; | ||
} | ||
} | ||
|
||
return -1; | ||
} | ||
}; |