Skip to content

Instantly share code, notes, and snippets.

@tolumide-ng
Created October 16, 2020 12:58
Show Gist options
  • Save tolumide-ng/9ea61b79ef8956b01f06bb8dd613cdab to your computer and use it in GitHub Desktop.
Save tolumide-ng/9ea61b79ef8956b01f06bb8dd613cdab to your computer and use it in GitHub Desktop.
mod Graph {
use std::collections::HashMap; //import hashmap from std lib
pub struct DAG { // define the DAG struct
graph: Option<HashMap<u8, Vec<u8>>,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment