Clarify instructions for the exercise `btreesearchitem`

This commit is contained in:
Augusto 2021-06-08 13:57:24 +01:00
parent c96169c4e3
commit da117bbf26
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
### Instructions
Write a function that searches for a node with a data element equal to `elem`and that returns that node.
Write a function that returns the `TreeNode` with a `data` field equal to `elem` if it exists in the tree, otherwise return `nil`.
### Expected function