From 0b1af87fafd481a4b05ec2d8313a6726d6e4ce43 Mon Sep 17 00:00:00 2001 From: Rust & Python Date: Wed, 29 Sep 2021 21:41:52 +0530 Subject: [PATCH] chore: Update info.toml for fizzbuzz --- info.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/info.toml b/info.toml index 21406630..89e805ee 100644 --- a/info.toml +++ b/info.toml @@ -1042,3 +1042,14 @@ Challenge: There is one test that is marked `#[ignore]`. Can you supply the missing code that will make it pass? You may want to consult the standard library documentation for a certain trait for more hints. """ + +[[exercises]] +name = "fizzbuzz" +path = "exercises/fizzbuzz.rs" +mode = "test" +hint = """ +Hint: Try using the `match` keyword for `num` variable. + +Hint2: Use modulo. +""" +