Leetcode 295. Find Median (heapq 힙큐로 중간값 구하기)


Leetcode 295. Find Median (heapq 힙큐로 중간값 구하기)

https://leetcode.com/problems/find-median-from-data-stream/ Find Median from Data Stream - 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 heapq는 잊을 만할때쯤 나오고 , O(NlogN)의 time complexity를 가지기 때문에 정렬에 종종 활용되는 것 같습니다. 이번 문제는 addNum의 기능에는 숫자를 추가하고 findMedian기능에서 중간값을 반환하도록 하는 문제인데요 가운데..


원문링크 : Leetcode 295. Find Median (heapq 힙큐로 중간값 구하기)