▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/fizz-buzz/ Fizz Buzz - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 정수 n이 주어지면 배열을 답으로 반환한다. 반환 값 원소의 데이터 타입은 문자열이며 배열의 원소가 3과 5로 나눠지면 "FizzBuzz", 3은 "Fizz", 5는 "Buzz" 로 출력하고 어느 것에도 해당하지 않는 원소는 자료형만 바꾸어 그대로 출력한다. class Solution: def..