-
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
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
leetcode/leetcode75/374.GuessNumberHigherOrLower/guessNumberHigherOrLower.go
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,43 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
) | ||
|
||
/** | ||
* 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 | ||
* func guess(num int) int; | ||
*/ | ||
|
||
var pick = 6 | ||
|
||
func guess(num int) int { | ||
if num == pick { | ||
return 0 | ||
} else if num > pick { | ||
return -1 | ||
} | ||
return 1 | ||
} | ||
|
||
func guessNumber(n int) int { | ||
left, right := 1, n | ||
for left < right { | ||
mid := left + (right-left)>>1 | ||
if guess(mid) <= 0 { | ||
right = mid | ||
} else { | ||
left = mid + 1 | ||
} | ||
} | ||
return left | ||
} | ||
|
||
func main() { | ||
n := 10 | ||
fmt.Println(guessNumber(n)) | ||
} |