Leetcode学习(10)—— Fizz Buzz

来源:互联网 发布:web项目绑定域名 编辑:程序博客网 时间:2024/05/16 08:16

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

这里写图片描述

0 0