leetcode88
![[A100C_day 2] Leetcode 88. Merge Sorted Array (java)](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FvbFqK%2FbtsDRJeMqWv%2FAAAAAAAAAAAAAAAAAAAAAIgyqYhKYCW12qOs7UDeV-g6cu3r8jqhaejzgJ_UMnm4%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DG7musuT4A816UR0qwqMT%252F4wTEpk%253D)
[A100C_day 2] Leetcode 88. Merge Sorted Array (java)
문제 링크 https://leetcode.com/problems/merge-sorted-array/ LeetCode - The World's Leading Online Programming Learning Platform 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. 주어진 인자는 sorted array인 nums1, nums2 그리고 각각이 이들의 요소 개수인 m, n 2. 앞으로 보나 뒤로 보나 two pointer로 풀면 될 것 같다! 3. 중요한 점은 새..