최근 포스트

[LeetCode] 74. Search a 2D Matrix

최대 1 분 소요

Python class Solution: def searchMatrix(self, matrix: List[List[int]], target: int) -> bool: for i in matrix: if target in i: ...

[LeetCode] 268. Missing Number

최대 1 분 소요

Python class Solution: def missingNumber(self, nums: List[int]) -> int: temp = 0 for i in sorted(nums): if i != temp: ...