Created
January 21, 2016 02:42
-
-
Save jollyjoester/6adbbf6ce1fe2b8a4abe to your computer and use it in GitHub Desktop.
そーいえばSwiftでFizzBuzz #__swift__ #CodePiece
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for i in 1...100 { | |
| switch (i % 3, i % 5) { | |
| case (0, 0): | |
| print("FizzBuzz") | |
| case (0, _): | |
| print("Fizz") | |
| case (_, 0): | |
| print("Buzz") | |
| default: | |
| print(i) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment