http://qs321.pair.com?node_id=1142629


in reply to Re: Smoothsort
in thread Smoothsort

sub leonardo { my $n = shift; $n <= 1 || leonardo ($n - 2) + leonardo ($n - 1) + 1 +; }