[참고문제] : https://leetcode.com/problems/median-of-two-sorted-arrays/ Median of Two Sorted Arrays - 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 문제 풀이 생각의 흐름 - 이미 정렬되어 있다. 이미 정렬이 되어 있으니, 각각의 배열에서 계속 더 작은 수를 확인한다. 생각의 흐름 - 중앙값 까지만 확인해도 된다. 어짜피 필요한 건 중앙값이고, 중앙값까지만 확인하면 계산할 수 있다. 생각의..