From 28840611b2ffefb72740812318f2e6f0dce1d165 Mon Sep 17 00:00:00 2001 From: Augusto Date: Tue, 8 Jun 2021 14:03:34 +0100 Subject: [PATCH] Add a link for the binary trees definition --- subjects/btreeisbinary/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/btreeisbinary/README.md b/subjects/btreeisbinary/README.md index 7d57aa7b..d3a03faf 100644 --- a/subjects/btreeisbinary/README.md +++ b/subjects/btreeisbinary/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function, `BTreeIsBinary`, that returns `true` only if the tree given by `root` follows the binary search tree properties. +Write a function, `BTreeIsBinary`, that returns `true` only if the tree given by `root` follows the binary search tree [properties](https://en.wikipedia.org/wiki/Binary_search_tree#Definition). ### Expected function