Code challenge
Problem
Reverse an array of characters `s` in place with O(1) extra memory.
function reverseString(s) { // modify s in place }