-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
use crate::solutions::Solution; | ||
|
||
pub struct Day20; | ||
|
||
impl Solution for Day20 { | ||
fn part_one(&self, _input: &str) -> String { | ||
String::from('0') | ||
} | ||
|
||
fn part_two(&self, _input: &str) -> String { | ||
String::from('0') | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use crate::solutions::year2024::day20::Day20; | ||
use crate::solutions::Solution; | ||
|
||
const EXAMPLE: &str = r#""#; | ||
|
||
#[test] | ||
fn part_one_example_test() { | ||
assert_eq!("0", Day20.part_one(EXAMPLE)); | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ pub mod day15; | |
pub mod day16; | ||
pub mod day18; | ||
pub mod day19; | ||
pub mod day20; |