str-digit-extraction-idiom

Status: IN

Digit-manipulation problems in this repo consistently use `str(n)` to iterate digits left-to-right rather than arithmetic extraction via `% 10` / `divmod`, which yields digits in reverse order.

Source: entries/2026/06/06/alternating-digit-sum-solution.md

JSON