add-strings-avoids-int-conversion

Status: IN

`addStrings` converts between characters and digit values using `ord()/chr()` arithmetic (`ord(c) - 48`, `chr(d + 48)`) and never calls `int()` or `str()`, satisfying the problem's constraint against built-in integer conversion.

Source: entries/2026/06/06/add-strings-solution.md

JSON