Categorygithub.com/psyhackological/notesgofcc-learn-golang-assetscourse7-loopsexercises4-loops_fizzbuzz
package
0.0.0-20240419213727-29a7e0648d8c
Repository: https://github.com/psyhackological/notes.git
Documentation: pkg.go.dev
# README
Fizzbuzz
Go supports the standard modulo operator:
7 % 3 // 1
Logical AND operator:
true && false // false
true && true // true
Logical OR operator:
true || false // true
false || false // false
Assignment
We're hiring engineers at Textio, so time to brush up on the classic "Fizzbuzz" game, a coding exercise that has been dramatically overused in coding interviews across the world.
Complete the fizzbuzz
function that prints the numbers 1 to 100 inclusive each on their own line, but substitutes multiples of 3 for the text fizz
and multiples of 5 for buzz
. For multiples of 3 AND 5 print instead fizzbuzz
.