Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit aecf156

Browse files
👌 IMPROVE:
1 parent ab5c884 commit aecf156

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎basic_algorithm/binary_search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ func firstBadVersion(n int) int {
223223
start := 0
224224
end := n
225225
for start+1 < end {
226-
mid := start + (end - start)/2
226+
mid := start + ((end-start)>>1)
227227
if isBadVersion(mid) {
228228
end = mid
229229
} else if isBadVersion(mid) == false {

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /