thiagowfx's avatar

Β¬ just serendipity πŸ€ (not just serendipity)

binary search, bias to the right

β€’ 36 words β€’ 1 min β€’ updated

Prefer:

python
mid = left + (right - left + 1) // 2

Prefer:

python
mid = (left + right + 1) // 2

Instead of:

python
mid = ((left + right) // 2) + 1