From e666c9f43437e455ffe045e320124877eb555d5a Mon Sep 17 00:00:00 2001 From: Artem Solomatin Date: Fri, 11 Oct 2024 01:32:44 +0300 Subject: [PATCH] Update fizzbuzz.clj --- src/battle_asserts/issues/fizzbuzz.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/battle_asserts/issues/fizzbuzz.clj b/src/battle_asserts/issues/fizzbuzz.clj index 2a11b997..ea500f6b 100644 --- a/src/battle_asserts/issues/fizzbuzz.clj +++ b/src/battle_asserts/issues/fizzbuzz.clj @@ -3,7 +3,7 @@ (def level :elementary) -(def tags ["strings"]) +(def tags ["strings" "games"]) (def description {:en "If a number is divisible by 3, return \"Fizz\". If a number is divisible by 5, return \"Buzz\". If a number is divisible by 3 and 5, return \"FizzBuzz\". Otherwise, return an empty string."