|
@@ -41,10 +41,10 @@ Test-Driven Development allows us to fully utilize our mental capacity to clearl
|
41
|
41
|
|
42
|
42
|
# Instruction
|
43
|
43
|
Given a number, your method should return a string:
|
44
|
|
-- Fizz if it's divisible by 3
|
45
|
|
-- Buzz if it's divisible by 5
|
46
|
|
-- FizzBuzz if it's divisible by 15
|
47
|
|
-- the number otherwise
|
|
44
|
+- "Fizz" if it's divisible by 3
|
|
45
|
+- "Buzz" if it's divisible by 5
|
|
46
|
+- "FizzBuzz" if it's divisible by 15
|
|
47
|
+- the number in string format otherwise
|
48
|
48
|
|
49
|
49
|
## Todo
|
50
|
50
|
1. For this repo
|