Implement `buildMinHeap(arr)` returning a min-heap array built by sifting down from the last parent to the root (Floyd's build-heap).
+ 1 hidden test run on Submit.
Floyd's bottom-up build-heap runs in O(n), faster than inserting one by one.
Run your code to see results.