Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions C++/374.guess-number-higher-or-lower.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/**
* Forward declaration of guess API.
* @param num your guess
* @return -1 if num is lower than the guess number
* 1 if num is higher than the guess number
* otherwise return 0
* int guess(int num);
*/

class Solution {
public:
int guessNumber(int n) {
return gn(1,n);
}
int gn(long long l,int h){
switch(guess((l+h)/2)){
case 0:
return (l+h)/2;
case 1:
return gn((l+h)/2+1,h);
case -1:
return gn(l,(l+h)/2);
}
return 1;

}
};