Skip to content

Commit aecf156

Browse files
committed
👌 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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy