Challenge 1: Convert Max-Heap to Min-Heap
Given a max heap, convert it into a min heap.
We'll cover the following...
Problem statement
Implement a function convertMax(List<int> maxHeap)
, ...
Given a max heap, convert it into a min heap.
Implement a function convertMax(List<int> maxHeap)
, ...