Skip to content

Instantly share code, notes, and snippets.

@yusuiked
Created November 6, 2011 12:49
Show Gist options
  • Save yusuiked/1342828 to your computer and use it in GitHub Desktop.
Save yusuiked/1342828 to your computer and use it in GitHub Desktop.
FibBuzz in Groovy
println((1..100).inject([1G,1G]){fib,i->fib<<fib[i]+fib[i-1]}.collect{it%15==0?"FizzBuzz":it%3==0?"Fizz":it%5==0?"Buzz":it})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment