in reply to (tye)Re: (Golf): Sieve of Eratosthenes
in thread (Golf): Sieve of Eratosthenes
BTW, the above was based on solving the Sieve using functional programming techniques and then analysing what the computer ends up doing when that code is run and then reimplementing that in a procedural style. I find that technique often gives you interesting insights.
Anyway, I tried to reverse engineer what tilly's solution was from his description and came up with this:
which is 54 characters. It is strict compliant "to the letter" but not "in spirit". But it is even more Sieve-like than my previous one (I just don't like algorithms where you give an upper bound and once you get there you have to start over if you want to go further). - tye (but my friends call me "Tye")sub sieve2 { grep{@_[map$a*$_,2..@_/($a=$_)]=0if$_[$_]>1}@_=0..pop; } for( @ARGV ) { print "$_: ",join(" ",sieve2($_)),$/; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: (tye)Re2: (Golf): Sieve of Eratosthenes
by MeowChow (Vicar) on May 19, 2001 at 23:05 UTC | |
(tye)Re3: (Golf): Sieve of Eratosthenes
by tye (Sage) on May 20, 2001 at 01:56 UTC | |
by tilly (Archbishop) on May 21, 2001 at 20:37 UTC | |
by tilly (Archbishop) on Feb 26, 2011 at 01:23 UTC |