# lis
[](https://travis-ci.org/axelf4/lis)
Rust implementation of the Longest Increasing Subsequence algorithm.
## Example
```rust
assert_eq!(lis::longest_increasing_subsequence(&[2, 1, 4, 3, 5]), [1, 3, 4]);
```