LoginSignup
0
0

More than 1 year has passed since last update.

FizzBuzz - HackerRank

Posted at

最近何度かHackerRankでコーディングテストを受ける機会があったので、HackerRankのテストのコーディング方法について記しておく。

今回は、以下の「FizzBuzz」についてコード例を記載する。

FizzBuzz
def fizzBuzz(n):
    for i in range(1,n+1):
        if i % 3 == 0 and i % 5 == 0:
            print('FizzBuzz')
        elif i % 3 == 0:
            print('Fizz')
        elif i % 5 == 0:
            print('Buzz')
        else:
            print(i)

n = int(input())
fizzBuzz(n)
0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0