344. Reverse String Poison 2023-08-07 Two Pointers 1234567891011121314class Solution { public void reverseString(char[] s) { int i = 0, j = s.length - 1; while (i < j) { swap(s, i++, j--); } } private void swap(char[] s, int i, int j) { char tmp = s[i]; s[i] = s[j]; s[j] = tmp; }} References344. Reverse String