overflow-safe-midpoint-idiom

Status: IN

`guessNumber` computes midpoint as `low + (high - low) // 2` rather than `(low + high) // 2` — unnecessary in Python but signals awareness of the integer overflow pitfall and is used idiomatically across the repo.

Source: entries/2026/06/06/guess-number-higher-or-lower-solution.md

JSON