diff --git a/src/data-structures/heap/MinHeap.js b/src/data-structures/heap/MinHeap.js index 2e4cd985a5..256e42da4d 100644 --- a/src/data-structures/heap/MinHeap.js +++ b/src/data-structures/heap/MinHeap.js @@ -1,5 +1,7 @@ import Heap from './Heap'; +// the best heap implementation!!!! + export default class MinHeap extends Heap { /** * Checks if pair of heap elements is in correct order.