Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 378 Bytes

README.md

File metadata and controls

11 lines (6 loc) · 378 Bytes

49.Fizz Buzz

Description

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”.

From

LeetCode