sub bubble_sort (@a) { for ^@a -> $i { for $i ^..^ @a -> $j { @a[$j] < @a[$i] and @a[$i, $j] = @a[$j, $i]; } } }
Last updated 11 months ago