move to array folder

This commit is contained in:
Vitor Oliveira 2021-03-20 11:10:25 -07:00
parent 6bf41b50eb
commit 9a7313d669

View file

@ -72,11 +72,6 @@ fizz_buzz(n)
# Condition 2: 15 % 5 == 0 , num_ans_str += "Buzz"
# => num_ans_str = "FizzBuzz"
#
# So for FizzBuzz we just check for two conditions instead of three
# conditions as in the first approach.
#
# Similarly, for FizzBuzzJazz now we would just have three
# conditions to check for divisibility.
# Complexity Analysis
#