lis

Rust implementation of the Longest Increasing Subsequence algorithm.

Build Status Documentation

Example

rust assert_eq!(lis::longest_increasing_subsequence(&[2, 1, 4, 3, 5]), [1, 3, 4]);