본문 바로가기
코딩테스트

[ LeetCode ] 344번 Reverse String

by 코뮤(commu) 2021. 4. 15.
728x90
반응형

 

leetcode.com/problems/reverse-string/

 

Reverse String - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

 

 

 

 

 

 

class Solution:
    def reverseString(self, s: List[str]) -> None:
        s.reverse()
        

 

 

 

 

 

 

728x90
반응형