summaryrefslogtreecommitdiff
path: root/src/03/07/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/03/07/README.md')
-rw-r--r--src/03/07/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/03/07/README.md b/src/03/07/README.md
index 20b320e..2024b4e 100644
--- a/src/03/07/README.md
+++ b/src/03/07/README.md
@@ -1,7 +1,7 @@
+
Implement the `remove(u)` method, that removes the node `u` from a
`MeldableHeap`. This method should run in `O(log n)` expected time.
-
```java
class MeldableHeap {
Node<T> merge(Node<T> h1, Node<T> h2) {