Skip to content

Commit

Permalink
chore(2023): disable day 19 doc tests
Browse files Browse the repository at this point in the history
  • Loading branch information
believer committed Dec 18, 2023
1 parent fb37dfa commit 2692366
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions rust/2023/src/day_19.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ pub fn input_generator(input: &str) -> Input {
/* Part One
*
*/
/*
// Your puzzle answer was
#[doc = r#"```
use advent_of_code_2023::day_19::*;
let data = include_str!("../input/2023/day19.txt");
assert_eq!(solve_part_01(&input_generator(data)), 0);
```"#]
*/
#[aoc(day19, part1)]
pub fn solve_part_01(input: &Input) -> u32 {
input.data
Expand All @@ -30,11 +32,13 @@ pub fn solve_part_01(input: &Input) -> u32 {
*
*
*/
/*
#[doc = r#"```
use advent_of_code_2023::day_19::*;
let data = include_str!("../input/2023/day19.txt");
assert_eq!(solve_part_02(&input_generator(data)), 0);
```"#]
*/
#[aoc(day19, part2)]
pub fn solve_part_02(_input: &Input) -> u32 {
todo!()
Expand Down

0 comments on commit 2692366

Please sign in to comment.