Skip to content

Commit f6f1e38

Browse files
committed
Initial setup
0 parents  commit f6f1e38

File tree

4 files changed

+44
-0
lines changed

4 files changed

+44
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/input
2+
/target
3+
Cargo.lock

Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "adventofcode-2022"
3+
version = "0.1.0"
4+
authors = ["Giacomo Stevanato <[email protected]>"]
5+
edition = "2021"
6+
7+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+
9+
[dependencies]
10+
aoc-helper = { git = "https://github.com/SkiFire13/adventofcode-helper-rs" }

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Solutions for the Advent of Code 2022.

src/main.rs

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// Makes using `Input` type aliases awkward
2+
#![allow(clippy::ptr_arg)]
3+
4+
aoc_helper::main!(2022 =>
5+
// day1,
6+
// day2,
7+
// day3,
8+
// day4,
9+
// day5,
10+
// day6,
11+
// day7,
12+
// day8,
13+
// day9,
14+
// day10,
15+
// day11,
16+
// day12,
17+
// day13,
18+
// day14,
19+
// day15,
20+
// day16,
21+
// day17,
22+
// day18,
23+
// day19,
24+
// day20,
25+
// day21,
26+
// day22,
27+
// day23,
28+
// day24,
29+
// day25,
30+
);

0 commit comments

Comments
 (0)