Skip to content

Commit

Permalink
ci: update AoC stars
Browse files Browse the repository at this point in the history
  • Loading branch information
dxnter committed Dec 4, 2023
1 parent 60be148 commit aad15d0
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/bin/02.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,9 @@
extern crate lazy_static;

use regex::Regex;
use std::collections::HashMap;
advent_of_code::solution!(2);

lazy_static! {
pub static ref MAX_COUNTS: HashMap<&'static str, u32> = {
[("red", 12), ("green", 13), ("blue", 14)]
.iter()
.cloned()
.collect()
};
pub static ref CUBE_COUNT_RE: Regex = Regex::new(r"(\d+) (red|green|blue)").unwrap();
}

Expand Down

0 comments on commit aad15d0

Please sign in to comment.