roggle 0.5.1

A Boggle solver written in Rust!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# roggle


A Boggle solver written in Rust! This is still very much a WIP while I actually learn how to use Rust.

# Example Usage


```rust
extern crate roggle;

use std::collections::HashSet;

fn main() {
  let board = "wodp djik asop saps";
  let solutions: HashSet<String> = roggle::solve(board);
  println!("{:?}", solutions);
}
```