linked list10 [LeetCode] Merge Two Sorted Lists 파이썬 (linked list) singly-linked list 에 대해 아직 이해가 부족 더 해봐야 함. # Definition for singly-linked list. # class ListNode: # def __init__(self, val=0, next=None): # self.val = val # self.next = next class Solution(object): def mergeTwoLists(self, l1, l2): """ :type l1: ListNode :type l2: ListNode :rtype: ListNode """ total = [] while l1 != None: total.append(int(l1.val)) l1 = l1.next while l2 != None: total.append(int(l.. 2021. 3. 29. 이전 1 2 다음