bit-walking-over-string-conversion

Status: IN

`even_odd_indices` walks bits via `n & 1` and `n >>= 1` rather than converting to a binary string with `bin()`, avoiding string allocation and keeping the solution at O(log n) with no dependencies.

Source: entries/2026/06/06/number-of-even-and-odd-bits-solution.md

JSON