Skip to content

Instantly share code, notes, and snippets.

@kosugi
Created August 8, 2012 10:44
Show Gist options
  • Select an option

  • Save kosugi/3294174 to your computer and use it in GitHub Desktop.

Select an option

Save kosugi/3294174 to your computer and use it in GitHub Desktop.
FizzBuzz
fizzbuzz n = map
(\p -> (if fst p /= "" then fst else snd) p)
(zip
(zipWith (++) (cycle ["", "", "Fizz"]) (cycle ["", "", "", "", "Buzz"]))
(map show [1..n]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment