From 54e161fd7049591e965de73874c0eb1406bc53e4 Mon Sep 17 00:00:00 2001 From: jim Date: Wed, 4 Mar 2015 18:23:21 -0500 Subject: [PATCH] reword problem --- exercises/assignment5.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/assignment5.mdwn b/exercises/assignment5.mdwn index 0494fa7d..c72ce6da 100644 --- a/exercises/assignment5.mdwn +++ b/exercises/assignment5.mdwn @@ -144,7 +144,7 @@ Choose one of these languages and write the following functions. 2 2 -9. (More challenging.) Assume you have a `color_tree` whose leaves are labeled with `int`s (which may be negative). For this problem, assume also that the the same color never labels multiple inner branches. Write a recursive function that reports which color has the greatest "score" when you sum up all the values of its descendent leaves. Since some leaves may have negative values, the answer won't always be the color at the tree root. In the case of ties, you can return whichever of the highest scoring colors you like. +9. (More challenging.) Assume you have a `color_tree` whose leaves are labeled with `int`s (which may be negative). For this problem, assume also that no color labels multiple `Branch`s (non-leaf nodes). Write a recursive function that reports which color has the greatest "score" when you sum up all the values of its descendent leaves. Since some leaves may have negative values, the answer won't always be the color at the tree root. In the case of ties, you can return whichever of the highest scoring colors you like. ## Search Trees ## -- 2.11.0