Skip to content

Commit 80a0851

Browse files
committed
Revert "👌 IMPROVE:"
This reverts commit aecf156.
1 parent aecf156 commit 80a0851

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)>>1)
226+
mid := start + (end - start)/2
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