| |
|
Post Made Community Wiki by Community♦
|
occurred Sep 23 '08 at 21:45
|
|
|
|
|
|
14
|
|
edited Aug 6 '08 at 22:47
|
The only real challenge here is turning it in a golf match.
Updated. Now 70 characters in Ruby, 8 characters behind Perl:
1.upto(100){|i|a,b=[:Fizz][i%3],[:Buzz][i%5];puts a||b ? "#{a}#{b}":i}
Allowing concatenation (+) for symbols and nil, e.g. (nil + :foo == 'foo', nil + nil == '') would help us a lot. We can monkeypatch Ruby to support this:
class Symbol
def +(other)
to_s + other.to_s
end
end
class NilClass
def +(other)
other.to_s
end
end
Now we're down to 58 characters, not counting the monkeypatch, 4 less than Perl:
1.upto(100){|_|s=[:Fizz][_%3]+[:Buzz][_%5];puts s!=''?s:_}
Updated. I found the best Ruby solution in comp.lang.ruby. 56 characters, but using ?d for 100 is sinking pretty damn low, IMHO.
1.upto(?d){|i|i%3<1&&x=:Fizz;puts i%5<1?"#{x}Buzz":x||i}
Which language features (that we cannot add by monkeypatching) would make this even shorter?
- an implicit variable (_) for blocks (Perl has this)
- the empty string evaluating to false (Perl has this. Zero (0) too is false.)
With these features, fizzbuzz would look like this (46 characters):
1.upto(100){puts [:Fizz][_%3]+[:Buzz][_%5]||_}
@lbrandy: golfscript is very cool. I got fizzbuzz down to 43 characters, but there's definitely room for improvement:
101,(;{\..3%'''Fizz'if\5%'''Buzz'if+\or}%n*
Updated. I've got it down to 37 characters, lbrandy, building on your solution (which is 40 characters, incidentally). You can save two characters by replacing <1 by !, twice. And another one by creating an 0..99 array and incrementing the number in the loop, instead of creating a 0..100 array and throwing away the first element.
100,{)..3%!'Fizz'*\5%!'Buzz'*+\or}%n*
Amazing what you can do with 36 primitives and 4 datatypes! A new addiction is born.
|
|
|
|
13
|
|
edited Aug 6 '08 at 22:12
|
The only real challenge here is turning it in a golf match.
Updated. Now 70 characters in Ruby, 8 characters behind Perl:
1.upto(100){|i|a,b=[:Fizz][i%3],[:Buzz][i%5];puts a||b ? "#{a}#{b}":i}
Allowing concatenation (+) for symbols and nil, e.g. (nil + :foo == 'foo', nil + nil == '') would help us a lot. We can monkeypatch Ruby to support this:
class Symbol
def +(other)
to_s + other.to_s
end
end
class NilClass
def +(other)
other.to_s
end
end
Now we're down to 58 characters, not counting the monkeypatch, 4 less than Perl:
1.upto(100){|_|s=[:Fizz][_%3]+[:Buzz][_%5];puts s!=''?s:_}
Which language features (that we cannot add by monkeypatching) would make this even shorter?
- an implicit variable (_) for blocks (Perl has this)
- the empty string evaluating to false (Perl has this. Zero (0) too is false.)
With these features, fizzbuzz would look like this (46 characters):
1.upto(100){puts [:Fizz][_%3]+[:Buzz][_%5]||_}
@lbrandy: golfscript is very cool. I got fizzbuzz down to 43 characters, but there's definitely room for improvement:
101,(;{\..3%'''Fizz'if\5%'''Buzz'if+\or}%n*
Updated. I've got it down to 37 characters, lbrandy, building on your solution (which is 40 characters, incidentally). You can save two characters by replacing <1 by !, twice. And another one by creating an 0..99 array and incrementing the number in the loop, instead of creating a 0..100 array and throwing away the first element.
100,{)..3%!'Fizz'*\5%!'Buzz'*+\or}%n*
Amazing what you can do with 36 primitives and 4 datatypes! A new addiction is born.
|
|
|
|
12
|
|
edited Aug 5 '08 at 16:06
|
The only real challenge here is turning it in a golf match.
Updated. Now 70 characters in Ruby, 8 characters behind Perl:
1.upto(100){|i|a,b=[:Fizz][i%3],[:Buzz][i%5];puts a||b ? "#{a}#{b}":i}
Allowing concatenation (+) for symbols and nil, e.g. (nil + :foo == 'foo', nil + nil == '') would help us a lot. We can monkeypatch Ruby to support this:
class Symbol
def +(other)
to_s + other.to_s
end
end
class NilClass
def +(other)
other.to_s
end
end
Now we're down to 58 characters, not counting the monkeypatch, 4 less than Perl:
1.upto(100){|_|s=[:Fizz][_%3]+[:Buzz][_%5];puts s!=''?s:_}
Which language features (that we cannot add by monkeypatching) would make this even shorter?
- an implicit variable (_) for blocks (Perl has this)
- the empty string evaluating to false (Perl has this. Zero (0) too is false.)
With these features, fizzbuzz would look like this (46 characters):
1.upto(100){puts [:Fizz][_%3]+[:Buzz][_%5]||_}
@lbrandy: golfscript is very cool. I got fizzbuzz down to 43 characters, but there's definitely room for improvement:
101,(;{\..3%'''Fizz'if\5%'''Buzz'if+\or}%n*
|
|
|
|
11
|
|
edited Aug 4 '08 at 21:37
|
The only real challenge here is turning it in a golf match.
Update
Updated. Now 70 characters in Ruby, 8 characters behind Perl:
1.upto(100){|i|a,b=[:Fizz][i%3],[:Buzz][i%5];puts a||b ? "#{a}#{b}":i}
Allowing concatenation (+) for symbols and nil, e.g. (nil + :foo == 'foo', nil + nil == '') would help us a lot. We can monkeypatch Ruby to support this:
class Symbol
def +(other)
to_s + other.to_s
end
end
class NilClass
def +(other)
other.to_s
end
end
Now we're down to 58 characters, not counting the monkeypatch, 4 less than Perl:
1.upto(100){|_|s=[:Fizz][_%3]+[:Buzz][_%5];puts s!=''?s:_}
Which language features (that we cannot add by monkeypatching) would make this even shorter?
- an implicit variable (_) for blocks (Perl has this)
- the empty string evaluating to false (Perl has this. Zero (0) too is false.)
With these features, fizzbuzz would look like this (46 characters):
1.upto(100){puts [:Fizz][_%3]+[:Buzz][_%5]||_}
|
|
|
|
10
|
|
edited Aug 4 '08 at 21:33
|
The only real challenge here is turning it in a golf match.
Update. Now 70 characters in Ruby, 8 characters behind Perl:
1.upto(100){|i|a,b=[:Fizz][i%3],[:Buzz][i%5];puts a||b ? "#{a}#{b}":i}
Which language features would make this even shorter?
- an implicit variable (_) for blocks
- allowing
Allowing concatenation (+) for symbols and nil, e.g. (nil + :foo == 'foo', nil + nil == '') would help us a lot. We can monkeypatch Ruby to support this:
class Symbol
def +(other)
to_s + other.to_s
end
end
class NilClass
def +(other)
other.to_s
end
end
Now we're down to 58 characters, not counting the monkeypatch, 4 less than Perl:
1.upto(100){|_|s=[:Fizz][_%3]+[:Buzz][_%5];puts s!=''?s:_}
Which language features (that we cannot add by monkeypatching) would make this even shorter?
- an implicit variable (_) for blocks (Perl has this)
- the empty string evaluating to false (Perl has this. Zero (0) too is false.)
With these features, fizzbuzz would look like this (46 characters):
1.upto(100){puts [:Fizz][_%3]+[:Buzz][_%5]||_}
|
|
|
|
9
|
|
edited Aug 4 '08 at 21:13
|
The only real challenge here is turning it in a golf match.
Update. Now 70 characters in Ruby, achieving parity with 8 characters behind Perl:
1.upto(100){|i|a,b=[:Fizz][i%3],[:Buzz][i%5];puts a||b ? "#{a}#{b}":i}
Which language features would make this even shorter?
- a non-short-circuiting or operator (|) with precedence lower than (=), but higher than (? :).
- an implicit variable (_) for blocks
- allowing concatenation (+) for symbols and nil, e.g. (nil + :foo == 'foo')foo', nil + nil == '')
- the empty string evaluating to false
With these features, fizzbuzz would look like this (55 46 characters):
1.upto(100){puts a=[:Fizz][_%3]|b=[:Buzz][_%5] ? a+b:_}
[:Fizz][_%3]+[:Buzz][_%5]||_}
|
|
|
|
8
|
|
edited Aug 4 '08 at 18:23
|
The only real challenge here is turning it in a golf match.
Update. Now 70 characters in Ruby, achieving parity with Perl:
1.upto(100){|i|a,b=[:Fizz][i%3],[:Buzz][i%5];puts a||b ? "#{a}#{b}":i}
Which language features would make this even shorter?
- a non-short-circuiting or operator (|) with precedence lower than (=), but higher than (? :).
- an implicit variable (_) for blocks
- allowing concatenation (+) for symbols and nil, e.g. (nil + :foo == 'foo')
With these features, fizzbuzz would look like this (55 characters):
1.upto(100){puts a=[:Fizz][_%3]|b=[:Buzz][_%5] ? a+b:_}
|
|
|
|
7
|
|
edited Aug 4 '08 at 18:00
|
The only real challenge here is turning it in a golf match. 71 (improved!)
Update. Now 70 characters in Ruby, achieving parity with Perl:
puts (1..100).map{|i|a,b=[:Fizz][i%3],[:Buzz][i%5];a||b
1.upto(100){|i|a,b=[:Fizz][i%3],[:Buzz][i%5];puts a||b ? "#{a}#{b}":i}
|
|
|
|
6
|
|
edited Aug 4 '08 at 17:46
|
The only real challenge here is turning it in a golf match. 78 71 (improved!) characters in Ruby:
f,b='Fizz','Buzz';puts
puts (1..100).map{|i|[f+b,i,i,f,i,b,f,i,i,f,b,i,f][i%15]||i}
1..100).map{|i|a,b=[:Fizz][i%3],[:Buzz][i%5];a||b ? "#{a}#{b}":i}
|
|
|
|
5
|
|
edited Aug 2 '08 at 22:28
|
The only real challenge here is turning it in a golf match. 78 characters in Ruby:
f,b='Fizz','Buzz';puts (1..100).map{|i|[f+b,i,i,f,i,b,f,i,i,f,b,i,f][i%15]||i}
|
|
|
|
4
|
|
edited Aug 2 '08 at 22:05
|
One-liner The only challenge here is turning it in a golf match. 78 characters in Ruby:
f,b='Fizz','Buzz';puts (1..100).map{|i|[f+b,i,i,f,i,b,f,i,i,f,b,i,f,i,i][i%15]}
Marginally longer, much more efficient:
f,b,n = 'Fizz','Buzz'
t = [f+b,n,n,f,n,b,f,n,n,f,b,n,f]
puts (1..100).map{|i| t[i%15] || i}
1..100).map{|i|[f+b,i,i,f,i,b,f,i,i,f,b,i,f][i%15]||i}
|
|
|
|
3
|
|
edited Aug 2 '08 at 20:13
|
One-liner in Ruby:
f,b='Fizz','Buzz';puts (1..100).map{|i|[f+b,i,i,f,i,b,f,i,i,f,b,i,f,i,i][i%15]}
Marginally longer, much more efficient:
f,b,n='Fizz','Buzz
f,b,n = 't=[f+b,n,n,f,n,b,f,n,n,f,b,n,f]
Fizz','Buzz'
t = [f+b,n,n,f,n,b,f,n,n,f,b,n,f]
puts (1..100).map{|i|t[i%15]||i}
1..100).map{|i| t[i%15] || i}
|
|
|
|
2
|
|
edited Aug 2 '08 at 14:01
|
One-liner in Ruby:
f,b='Fizz','Buzz';puts (1..100).map{|i|[f+b,i,i,f,i,b,f,i,i,f,b,i,f,i,i][i%15]}
Marginally longer, much more efficient:
f,b,n='Fizz','Buzz'
t=[f+b,n,n,f,n,b,f,n,n,f,b,n,f]
puts (1..100).map{|i|t[i%15]||i}
|
|
|
|
1
|
|
answered Aug 2 '08 at 13:55
|
One-liner in Ruby:
f,b='Fizz','Buzz';puts (1..100).map{|i|[f+b,i,i,f,i,b,f,i,i,f,b,i,f,i,i][i%15]}
|
|
|