LeetCode 1669번(Python)
LeetCode 1669번: Merge In Between Linked Lists(Python3)
https://leetcode.com/problems/merge-in-between-linked-lists/ Merge In Between Linked 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) 사이즈가 n인 list1과 사이즈가 m인 list2가 주어진다. 2) list1의 a번째 node부터 list1의 b번째 node까지를 제거한다. 3) list1의 a-1번째 node 이후에..