Reverse `nums` **in-place** and return the mutated array. Variant **#30**.
Example 1
Input: nums = [30,31,32]
Output: [32,31,30]
Constraints
Acceptance: 75% · Topics: array, two-pointers
← All practice problems