str-digit-count-negative-miscount

Status: IN

`findNumbers` uses `len(str(n))` to count digits, which is correct for positive integers but would miscount negatives because the `-` character inflates the string length by 1.

Source: entries/2026/06/06/find-numbers-with-even-number-of-digits-solution.md

JSON