Skip to content

Instantly share code, notes, and snippets.

@sgr-ksmt
Last active December 11, 2015 02:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sgr-ksmt/f6cc5f18a40666f672c0 to your computer and use it in GitHub Desktop.
Save sgr-ksmt/f6cc5f18a40666f672c0 to your computer and use it in GitHub Desktop.
FizzBuzz in Swift (one liner)
for i in 1...100{print((i%3>0 ?i%5>0 ?String(i):"":"Fizz")+(i%5>0 ?"":"Buzz"))}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment