2021: rm day00
This commit is contained in:
parent
0667ca29ad
commit
696c173f93
|
@ -1 +0,0 @@
|
|||
Hello world!
|
|
@ -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)
|
||||
}
|
Loading…
Reference in a new issue