Created
December 12, 2019 18:38
-
-
Save Matojeje/b1627d558f304a24f6f934b27334b090 to your computer and use it in GitHub Desktop.
FizzBuzz codegolf
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=1;i<101;i++){a="";i%3==0?a+="Fizz":0;i%5==0?a+="Buzz":0;print(a||i)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment