chore: Update info.toml for fizzbuzz

This commit is contained in:
Rust & Python 2021-09-29 21:41:52 +05:30
parent 53b3036825
commit 0b1af87faf

View File

@ -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.
"""