Fizz Buzz
Objective
Fizz Buzz
Fizz Buzz is a classic developer interview question that is asked/referenced so often for so long, it is almost a cliché!
Though this challenge will appear very simplistic to those with some coding experience, it is designed to weed out 99.5% programming job candidates who cannot creatively use their coding knowledge to solve simple problems.
Want to give it a shot?

Write a FizzBuzz.swift program that outputs numbers from 1 to 100.
But for multiples of 3, print Fizz
instead of the number and for the multiples of 5, print Buzz
. For numbers which are multiples of both 3 and 5 print, FizzBuzz
.
1 2 Fizz 4 Buzz Fizz 7 8 Fizz Buzz 11 Fizz 13 14 FizzBuzz 16 ... 97 98 Fizz Buzz
Happy coding!