최근 포스트

[LeetCode] 21. Merge Two Sorted Lists

최대 1 분 소요

Python # Definition for singly-linked list. # class ListNode: # def __init__(self, val=0, next=None): # self.val = val # self.next = next...

[LeetCode] 15. 3Sum

최대 1 분 소요

Python ~~~python class Solution: def threeSum(self, nums: List[int]) -> List[List[int]]: result = [] nums.sort()