I like to give my team little challenges to exercise their NQE skills. Why don’t you play along this weekend and let’s see all the different ways you can accomplish this goal.
Tune in to see some creative ways to solve the FizzBuzz challenge with NQE
FizzBuzz
The task is to write a program that prints the numbers from 1 to 100, but with a twist:
- For multiples of three, print "Fizz" instead of the number.
- For multiples of five, print "Buzz" instead of the number.
- For numbers which are multiples of both three and five, print "FizzBuzz" instead of the number.




