From 52f2a33163bcfd620edab3cd7cac45178d5b37a1 Mon Sep 17 00:00:00 2001 From: Eric Burden Date: Tue, 12 Sep 2023 13:09:40 -0400 Subject: [PATCH] Update challenge.md --- challenges/2023-09-12-count-voice-votes/challenge.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/2023-09-12-count-voice-votes/challenge.md b/challenges/2023-09-12-count-voice-votes/challenge.md index ad022b89..c3d88508 100644 --- a/challenges/2023-09-12-count-voice-votes/challenge.md +++ b/challenges/2023-09-12-count-voice-votes/challenge.md @@ -14,7 +14,7 @@ You were just trying to be helpful, really, but when you tried to explain to you ``` count_votes(["mary", "mary", "mary", "michael", "michael"]); -> "mary" count_votes(["michael"]) -> "michael" -count_votes(["mary", "michael", "down with tyranny", "fake news", "mary"]) -> "mary" +count_votes(["mary", "michael", "down with tyranny", "fake news", "mary", "mary", "mary"]) -> "mary" ``` ## Tackling This Challenge