From 00089c38a2a2a2fc401fd003dfffcd8463591231 Mon Sep 17 00:00:00 2001 From: "John S. Ryan" Date: Fri, 30 Sep 2016 17:42:30 -0700 Subject: [PATCH] Clarify handling scores greater than 255 in allergies. --- exercises/allergies/description.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/exercises/allergies/description.md b/exercises/allergies/description.md index 2b9ca8e031..ce6b0c5af5 100644 --- a/exercises/allergies/description.md +++ b/exercises/allergies/description.md @@ -19,3 +19,9 @@ Now, given just that score of 34, your program should be able to say: - Whether Tom is allergic to any one of those allergens listed above. - All the allergens Tom is allergic to. + +Note: a given score may include allergens **not** listed above (i.e. +allergens that score 256, 512, 1024, etc.). Your program should +ignore those components of the score. For example, if the allergy +score is 257, your program should only report the eggs (1) allergy. +