X Tutup
from typing import List class Solution: def reverseString(self, s: List[str]) -> None: s.reverse()
X Tutup