최근 포스트

[LeetCode] 125. Valid Palindrome

최대 1 분 소요

Python ~~~python class Solution: def isPalindrome(self, s: str) -> bool: strs = [] for i in s: if i.isalnum(): ...

[LeetCode] 1. Two Sum

최대 1 분 소요

Python ~~~python class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: for i in range(0, len(nums)): for j ...