concat-array-no-mutation

Status: IN

The concatenation solution uses Python's `+` operator on lists, which always allocates a new list; the input `nums` is never modified.

Source: entries/2026/06/06/concatenation-of-array-solution.md

JSON