-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
2 changed files
with
47 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,25 @@ | ||
// Forward declaration of guess API. | ||
// @param num, your guess | ||
// @return -1 if my number is lower, 1 if my number is higher, otherwise return | ||
// 0 | ||
int guess(int num); | ||
|
||
class Solution { | ||
public: | ||
int guessNumber(int n) { | ||
int left = 1, right = n; | ||
int res, mid; | ||
while (left < right) { | ||
mid = (right - left) / 2 + left; | ||
res = guess(mid); | ||
if (res == -1) { | ||
right = mid - 1; | ||
} else if (res == 1) { | ||
left = mid + 1; | ||
} else { | ||
return mid; | ||
} | ||
} | ||
return left; | ||
} | ||
}; |
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,22 @@ | ||
# The guess API is already defined for you. | ||
# @param num, your guess | ||
# @return -1 if my number is lower, 1 if my number is higher, otherwise return 0 | ||
# def guess(num): | ||
|
||
class Solution(object): | ||
def guessNumber(self, n): | ||
""" | ||
:type n: int | ||
:rtype: int | ||
""" | ||
left, right = 1, n | ||
while left < right: | ||
mid = (left + right)//2 | ||
res = guess(mid) | ||
if res == -1: | ||
right = mid - 1 | ||
elif res == 1: | ||
left = mid + 1 | ||
else: | ||
return mid | ||
return left |