최근 포스트

[LeetCode] 6. Zigzag Conversion

최대 1 분 소요

Python ~~~python class Solution: def convert(self, s: str, numRows: int) -> str: if len(s) <= numRows or numRows < 2: return...