[LeetCode] 21. Merge Two Sorted Lists 풀이 (JS)
0. 문제 https://leetcode.com/problems/merge-two-sorted-lists/ Merge Two Sorted Lists - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 두 개의 정렬된 정수 리스트를 입력받아, 두 리스트를 이용하여 하나의 정렬된 리스트 #1 Input: list1 = [1,2,4], list2 = [1,3,4] Output: [1,1,2,3,4,4] #2 Input: list1 = [], list2 = [] Outp..
2022. 7. 17.