in reply to Re: Golf: overtone calculator
in thread Golf: overtone calculator

Impressing inner loop, but your sort will fail with $_[1] > 10, because it sorts lexically.

~Django
"Why don't we ever challenge the spherical earth theory?"

Replies are listed 'Best First'.
Re: Re: Re: Golf: overtone calculator
by jynx (Priest) on Sep 02, 2002 at 01:37 UTC

    Does this fix the problem? (at 72 chars):
    sub Harmonics ($$) { #23456789_123456789_123456789_123456789_123456789_123456789_123456789_ +12 for$a(1..pop){$_{sprintf'%.3f',$_[0]*$a/$_}++for 1..$a}sort{$a-$b}keys +%_ }
    jynx
      I'm outta votes right now, but kudos for the $a-$b bit. D'oh..

      Makeshifts last the longest.

      Does this fix the problem?

      Yepp, not only working, but kicking out my sort too!

      ~Django
      "Why don't we ever challenge the spherical earth theory?"