Leetcode学习(10)—— Fizz Buzz

xiaoxiao2021-02-28  497

Write a program that outputs the string representation of numbers from 1 to n.

But for multiples of three it should output “Fizz” instead of the number and for the multiples of five output “Buzz”. For numbers which are multiples of both three and five output “FizzBuzz”.

Example: n = 15, Return: [ "1", "2", "Fizz", "4", "Buzz", "Fizz", "7", "8", "Fizz", "Buzz", "11", "Fizz", "13", "14", "FizzBuzz" ] # -*- coding:utf-8 -*- class Solution(object): def fizzBuzz(self, n): new_list = [] for i in range(1, n+1): if i % 15 == 0: new_list.append('FizzBuzz') elif i % 5 == 0: new_list.append('Buzz') elif i % 3 == 0: new_list.append('Fizz') else: new_list.append(str(i)) return new_list

转载请注明原文地址: https://www.6miu.com/read-48158.html

最新回复(0)