string-concat-over-arithmetic-for-digit-joining

Status: IN

Solutions that need to "concatenate" two integers as digits use `int(str(a) + str(b))` rather than `a * 10**len(str(b)) + b` — simpler code at the cost of O(d) string allocation per pair.

Source: entries/2026/06/06/find-the-array-concatenation-value-solution.md

JSON