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