Sort a list of integers in binary using the power of binary heapify!
// Example list: [4, 2, 5, 1, 3, 6, 4] int[] arr = [4, 2, 5, 1, 3, 6, 4] heapify(arr, 0, arr.length - 1)