in reply to Re: Re (tilly) 4: (Golf as well): List of Partitions
in thread (Golf as well): List of Partitions
The first form is more general, you can put more complex logic inside the block. The second form replaces the block with a comma and shaves a character. Often you can shave a few characters off of someone's solution by seeing that a few map's or grep's can switch over to the version with the comma....map{"@$_\n"}@a... ...map"@$_\n",@a...
Sometimes it is not obvious that you can. So sometimes I just have to try it out. As in the case:
Incidentally the following version is the same size, but has slightly nicer (IMHO) output:...map{$$_[0]>$i?():[$i,@$_]}P($n-$i)... ...map$$_[0]>$i?():[$i,@$_],P($n-$i)...
sub P{ my$i=pop;[$i],map{--$i;map$$_[0]>$i?():[$i,@$_],P($_-1)}2..$i }
|
|---|