Files
AOC/day-4/src/part1.rs
Dylan Thies fccbc5280c day-4 prep
2023-12-03 20:51:47 -05:00

20 lines
322 B
Rust

#![warn(clippy::all, clippy::pedantic)]
pub fn part1 (_input: &str) -> String {
"Not Finished".to_string()
}
#[cfg(test)]
mod test {
use super::*;
const INPUT: &str = "";
#[test]
fn part1_works() {
let result = part1(INPUT);
assert_eq!(result, "Not Finished".to_string());
}
}