deleted line 27

This commit is contained in:
Ayaan Khan 2020-06-24 02:06:52 +05:30
parent 3a7a266ada
commit 2464d438f9

View File

@ -24,7 +24,6 @@ class MinHeap {
/** to heapify a subtree with the root at given index
*/
void MinHeapify(int);
int parent(int i) { return (i - 1) / 2; }