http://www.perlmonks.org?node_id=78589


in reply to Re: Re: (Golf) Multiply polynomials
in thread (Golf) Multiply polynomials

Simple improvement:

my($a,$b)=(shift,shift); my$a=shift;my$b=shift; # a bit shorter my$a=pop;my$b=pop; # even shorter since multiplaction is commutative

        - tye (but my friends call me "Tye")