How Short Can You Write Fizz Buzz?
hungtran.co
How Short Can You Write Fizz Buzz?
1–4 of 4 posts
Re: How Short Can You Write Fizz Buzz?
#2For me personally, the sweet spot between readability and compactness would be one of the first examples:
for(var i = 0; i Re: How Short Can You Write Fizz Buzz?
#3I liked my 4 (non boilerplate), readable lines in nemerle -
Re: How Short Can You Write Fizz Buzz?
#4For me personally, the sweet spot between readability and compactness would be one of the first examples: for(var i = 0; i
Can you do it in js without using conditionals.