2021: rm day00

This commit is contained in:
Antoine Martin 2021-12-01 07:35:34 +01:00
parent 0667ca29ad
commit 696c173f93
2 changed files with 0 additions and 18 deletions

View file

@ -1 +0,0 @@
Hello world!

View file

@ -1,17 +0,0 @@
use std::fmt::Write;
use anyhow::Result;
const INPUT: &str = include_str!("../input/day00.txt");
pub fn run() -> Result<String> {
let mut res = String::with_capacity(128);
writeln!(res, "part 1: {}", part1(INPUT)?)?;
Ok(res)
}
fn part1(input: &str) -> Result<&str> {
Ok(input)
}