From da117bbf261d369080aae3cd37be2805884d6b96 Mon Sep 17 00:00:00 2001 From: Augusto Date: Tue, 8 Jun 2021 13:57:24 +0100 Subject: [PATCH] Clarify instructions for the exercise `btreesearchitem` --- subjects/btreesearchitem/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/btreesearchitem/README.md b/subjects/btreesearchitem/README.md index 67b29d089..a364f57a5 100644 --- a/subjects/btreesearchitem/README.md +++ b/subjects/btreesearchitem/README.md @@ -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