[LeetCode] 344. Reverse String

Jadon·2021년 12월 29일
0
post-thumbnail

344. Reverse String

Write a function that reverses a string. The input string is given as an array of characters s.

You must do this by modifying the input array in-place with O(1) extra memory.

Example 1:

Input: s = ["h","e","l","l","o"]
Output: ["o","l","l","e","h"]

Example 2:

Input: s = ["H","a","n","n","a","h"]
Output: ["h","a","n","n","a","H"]

Constraints:

1 <= s.length <= 105
s[i] is a printable ascii character.

My Solution

class Solution:
    def reverseString(self, s: List[str]) -> None:
        """
        Do not return anything, modify s in-place instead.
        """
        s.reverse()

아래 코드를 사용하면 더 빠르겠지만 pass할 수 없다. 이 문제는 O(1) 공간복잡도로 제한되기 때문에 슬라이싱을 할 때 새로운 변수를 선언하게 되면 메모리가 사용되면서 fail한다.

class Solution:
    def reverseString(self, s: List[str]) -> None:
        """
        Do not return anything, modify s in-place instead.
        """
        s = s[::-1]

0개의 댓글