@dcromley thanks for coming to my aid.
FizzBuzz was used as an interview question for potential programmer hires. The task was to count to 100 and if the number a multiple of 3, say Fizz instead of the number, if the number were multiple of 5 say Buzz instead of the number AND if the number a multiple of 3 and 5 say FizzBuzz instead of the number.
https://micheleriva.medium.com/about-cod...cd08d9dfe5
The author of FizzBuzz article was also praising making your code in a way that you could come back to it and modify easily in the future.
I made FizzBuzz and then modified it for more prime numbers, the first 5, instead of just 2. So I made the task harder but answered with same number of lines of code. It's just a little ditty but I am kind of proud of it.
FizzBuzz was used as an interview question for potential programmer hires. The task was to count to 100 and if the number a multiple of 3, say Fizz instead of the number, if the number were multiple of 5 say Buzz instead of the number AND if the number a multiple of 3 and 5 say FizzBuzz instead of the number.
https://micheleriva.medium.com/about-cod...cd08d9dfe5
The author of FizzBuzz article was also praising making your code in a way that you could come back to it and modify easily in the future.
I made FizzBuzz and then modified it for more prime numbers, the first 5, instead of just 2. So I made the task harder but answered with same number of lines of code. It's just a little ditty but I am kind of proud of it.
b = b + ...