35 lines
597 B
Bash
Executable File
35 lines
597 B
Bash
Executable File
#!/bin/sh
|
|
|
|
today=$(date +%d)
|
|
aocd > inputs/day$today
|
|
|
|
echo '#![feature(test)]
|
|
extern crate test;
|
|
use aoc2022::{boilerplate, common::*};
|
|
|
|
const DAY: usize = '$today';
|
|
type Parsed = Vec<usize>;
|
|
|
|
fn parse_input(raw: &str) -> Parsed {
|
|
parse_nums(raw)
|
|
}
|
|
|
|
fn part1(parsed: &Parsed) -> usize {
|
|
unimplemented!()
|
|
}
|
|
|
|
fn part2(parsed: &Parsed) -> usize {
|
|
unimplemented!()
|
|
}
|
|
|
|
boilerplate! {
|
|
TEST_INPUT == "",
|
|
tests: {
|
|
part1: { TEST_INPUT => 0 },
|
|
part2: { TEST_INPUT => 0 },
|
|
},
|
|
bench1 == 0,
|
|
bench2 == 0,
|
|
bench_parse: Vec::len => 0,
|
|
}' > src/bin/day$today.rs
|