Movatterモバイル変換


[0]ホーム

URL:


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

Commitaecf156

Browse files
committed
👌 IMPROVE:
1 parentab5c884 commitaecf156

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
ifisBadVersion(mid) {
228228
end = mid
229229
}elseifisBadVersion(mid) ==false {

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp