roggle 0.5.1

A Boggle solver written in Rust!
Documentation

roggle

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

Example Usage

extern crate roggle;

use std::collections::HashSet;

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