lis 0.1.0

Longest increasing subsequence implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
# lis

[![Build Status](https://travis-ci.org/axelf4/lis.svg?branch=master)](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]);
```