Skip to content

Commit

Permalink
hmm
Browse files Browse the repository at this point in the history
  • Loading branch information
Icerath committed Dec 24, 2024
1 parent 3172075 commit ac0c328
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/day23.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ unsafe fn part1_inner(input: &[u8]) -> u32 {
unsafe fn part2_inner(input: &[u8]) -> String {
parse(input);

let mut clique = vec![];
let mut longest = vec![];
let mut longest = ArrayVec::<[u16; MAX_CONNECTIONS]>::new();
let mut clique = ArrayVec::<[u16; MAX_CONNECTIONS]>::new();

let mut seen = [false; 26 * 26];
for a in 0..(26 * 26) {
Expand Down

0 comments on commit ac0c328

Please sign in to comment.