Rust implementation of the Longest Increasing Subsequence algorithm.
rust assert_eq!(lis::longest_increasing_subsequence(&[2, 1, 4, 3, 5]), [1, 3, 4]);