您的位置:首页 > 娱乐 > 明星 > 好玩的html网页代码_建筑设计网站排行榜_石家庄seo排名公司_google关键词推广

好玩的html网页代码_建筑设计网站排行榜_石家庄seo排名公司_google关键词推广

2024/12/27 6:03:30 来源:https://blog.csdn.net/mobius_strip/article/details/143996345  浏览:    关键词:好玩的html网页代码_建筑设计网站排行榜_石家庄seo排名公司_google关键词推广
好玩的html网页代码_建筑设计网站排行榜_石家庄seo排名公司_google关键词推广

Problem

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.

Algorithm

Generate the string as required.

Code

class Solution:def fizzBuzz(self, n: int) -> List[str]:ans = []for i in range(1, n + 1):divide3 = (i % 3 == 0) divide5 = (i % 5 == 0)if divide3 and divide5:ans.append("FizzBuzz")elif divide3:ans.append("Fizz")elif divide5:ans.append("Buzz")else:ans.append(str(i))return ans

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com