Longest increasing subsequence: Difference between revisions

m
(Add solution in Rust)
Line 1,440:
Straight-forward implementation of the algorithm described in the video.
<lang Perl 6perl6>sub lis(@d) {
my @l = [].item xx @d;
@l[0].push: @d[0];
10,327

edits