Last active
December 24, 2021 23:51
-
-
Save bwinton/0f61ed0d930363d807431f16cb055b5a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//----------------------------------------------------- | |
// Setup. | |
use std::collections::HashMap; | |
fn solve(i: usize, z: i128, levels: Vec<HashMap<i128, Vec<(i128, i128)>>>) -> Option<i64> { | |
let mut level = levels[i].get(&z).unwrap(); | |
level.sort(); | |
None | |
} | |
fn main() { | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "adventofcode" | |
version = "0.1.0" | |
authors = ["Blake Winton <[email protected]>"] | |
edition = "2021" | |
[profile.release] | |
debug = true | |
[[bin]] | |
name="error" | |
path="src/error.rs" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment