Skip to content

Commit 5c86a7f

Browse files
committed
add 344-zeze1004
1 parent d299dba commit 5c86a7f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

solutions/344/344-zeze1004(2).py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
class Solution:
2+
def reverseString(self, s: List[str]) -> None:
3+
"""
4+
Do not return anything, modify s in-place instead.
5+
"""
6+
s.reverse()

0 commit comments

Comments
 (0)