previndexinfo

code guessing, round #88, stage 1 (writing)

started at . submit by

specification

I heard that instead of "sorry", you should say "thank you". so thanks for being late. play fizzbuzz again, kinda. submissions may be written in any language.

fizzbuzz is a children's word game and a timeless programming problem. we'll do a variant of it today. normally, you list the natural numbers, but replace those divisible by 3 with "Fizz", those divisible by 5 with "Buzz", and those divisible by 15 with "FizzBuzz". it goes like this: [1, 2, Fizz, 4, Buzz, Fizz, 7, 8, Fizz, Buzz, 11, Fizz, 13, 14, FizzBuzz, ...]. here we'll do similar, but with 3 and 5 replaced with different numbers.

you can use any divisors you want in place of 3 and 5, as long as they are neither 3 nor 5. here's a valid example where I use 2 and 7 instead: [1, Fizz, 3, Fizz, 5, Fizz, Buzz, Fizz, 9, Fizz, 11, Fizz, 13, FizzBuzz, 15].

your challenge is to produce as many terms as you like of any such modified fizzbuzz sequence you like. as any language is allowed, there is no fixed API.

entries

10 entries have been received so far.

submit