https://github.com/jprando/jfizzbuzz
Fizz Buzz teste
https://github.com/jprando/jfizzbuzz
Last synced: about 1 month ago
JSON representation
Fizz Buzz teste
- Host: GitHub
- URL: https://github.com/jprando/jfizzbuzz
- Owner: jprando
- Created: 2017-11-18T04:43:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-18T15:45:13.000Z (over 8 years ago)
- Last Synced: 2025-10-24T19:45:14.443Z (8 months ago)
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JFizzBuzz
Fizz Buzz teste em C#
Enumerable.Range(1,100)
.Select(i => $"{i:00} {(i%3==0?"Fizz":"")}{(i%5==0?"Buzz":"")}")
.ToList().ForEach(Console.WriteLine)
dá pra melhorar?