We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f374020 commit 047b2b2Copy full SHA for 047b2b2
src/smart-pointers/exercise.md
@@ -7,7 +7,8 @@ minutes: 30
7
A binary tree is a tree-type data structure where every node has two children
8
(left and right). We will create a tree where each node stores a value. For a
9
given node N, all nodes in a N's left subtree contain smaller values, and all
10
-nodes in N's right subtree will contain larger values.
+nodes in N's right subtree will contain larger values. A given value should only
11
+be stored in the tree once, i.e. no duplicate nodes.
12
13
Implement the following types, so that the given tests pass.
14
0 commit comments