Skip to content

Commit

Permalink
Day 21 setup
Browse files Browse the repository at this point in the history
  • Loading branch information
CcydtN committed Dec 21, 2024
1 parent 1dc5481 commit 06aedf6
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
Empty file added data/examples/21.txt
Empty file.
26 changes: 26 additions & 0 deletions src/bin/21.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
advent_of_code::solution!(21);

pub fn part_one(input: &str) -> Option<u64> {
None
}

pub fn part_two(input: &str) -> Option<u64> {
None
}

#[cfg(test)]
mod tests {
use super::*;

#[test]
fn test_part_one() {
let result = part_one(&advent_of_code::template::read_file("examples", DAY));
assert_eq!(result, None);
}

#[test]
fn test_part_two() {
let result = part_two(&advent_of_code::template::read_file("examples", DAY));
assert_eq!(result, None);
}
}

0 comments on commit 06aedf6

Please sign in to comment.