Skip to content

Instantly share code, notes, and snippets.

@profesor79
Created March 22, 2023 15:38
Show Gist options
  • Save profesor79/68ecbd8bed0534111221ed0854267f5f to your computer and use it in GitHub Desktop.
Save profesor79/68ecbd8bed0534111221ed0854267f5f to your computer and use it in GitHub Desktop.
//orginal line
Enumerable.Range(1, 100).ToList().ForEach(i => Console.WriteLine( i % 3 * i % 5 == 0 ? (i % 3 == 0 ? "Fizz" : "") + (i % 5 == 0 ? "Buzz" : "") : i.ToString()));
// chopped so we can see it without scrolling
Enumerable
.Range(1, 100)
.ToList()
.ForEach(i => Console.WriteLine(
i % 3 * i % 5 == 0
? (i % 3 == 0 ? "Fizz" : "") + (i % 5 == 0 ? "Buzz" : "")
: i.ToString()));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment