Reverse the character array `s` in-place and return it. Variant **#23**.
Example 1
Input: s = ["v","a","r","i","a","n","t","2","3","c","o","d","e"]
Output: ["e","d","o","c","3","2","t","n","a","i","r","a","v"]
Constraints
Acceptance: 68% · Topics: string, two-pointers