深度堆疊[],廣度佇列deque()。
D.O. 디오 '괜찮아도 괜찮아 (That's okay)'
Depth-First Search
Argentina Panqueques
Hi Argentina!
412. Fizz Buzz
Given an integer n, return a string array answer (1-indexed) where:
answer[i] == “FizzBuzz” if i is divisible by 3 and 5.
answer[i] == “Fizz” if i is divisible by 3.
answer[i] == “Buzz” if i is divisible by 5.
answer[i] == i (as a string) if none of the above conditions are true.
Example 1:
1 | Input: n = 3 |
Example 2:
1 | Input: n = 5 |
Example 3:
1 | Input: n = 15 |