Skip to content

Instantly share code, notes, and snippets.

@georgespingos
Created December 17, 2012 11:14
Show Gist options
  • Save georgespingos/4317529 to your computer and use it in GitHub Desktop.
Save georgespingos/4317529 to your computer and use it in GitHub Desktop.
One line FizzBuzz in C# (135 character)
Enumerable.Range(1, 20).ToList().ForEach(c => Console.WriteLine((c%15==0)?"FizzBuzz":((c%3==0)?"Fizz":(c%5==0)?"Buzz":c.ToString())));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment