class Solution(object):
def reverseString(self, s):
"""
:type s: List[str]
:rtype: None Do not return anything, modify s in-place instead.
"""
length = len(s)
for i in range(length//2):
num = s[i]
s[i] = s[length - i -1]
s[length - i -1] = num
return s