str-conversion-digit-extraction-idiom

Status: IN

The `int(d) for d in str(n)` idiom is the standard digit-decomposition pattern across this repo, used instead of modular arithmetic (`% 10`, `// 10`), with the advantage of preserving left-to-right digit order without reversal.

Source: entries/2026/06/06/separate-the-digits-in-an-array-solution.md

Depended on by

JSON