Skip to content

Commit 064e424

Browse files
author
Brian Obot
committed
Add Folders for all the years so far and update readme file
1 parent ffd1948 commit 064e424

File tree

30 files changed

+177
-1
lines changed

30 files changed

+177
-1
lines changed

Cargo.lock

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[workspace]
2-
members = ["_2024", "_2025", "_2026"]
2+
members = ["_2015", "_2016", "_2017", "_2018", "_2019", "_2020", "_2021", "_2022", "_2023","_2024", "_2025", "_2026"]
33
resolver = "2"

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ This repository contains personal solutions to various "Advent of Code" challeng
44

55
## Contents
66

7+
- **[_2015](_2015)**: Solutions for Challenges for the Year 2015
8+
- **[_2016](_2016)**: Solutions for Challenges for the Year 2016
9+
- **[_2017](_2017)**: Solutions for Challenges for the Year 2017
10+
- **[_2018](_2018)**: Solutions for Challenges for the Year 2018
11+
- **[_2019](_2019)**: Solutions for Challenges for the Year 2019
12+
- **[_2020](_2020)**: Solutions for Challenges for the Year 2020
13+
- **[_2021](_2021)**: Solutions for Challenges for the Year 2021
14+
- **[_2022](_2022)**: Solutions for Challenges for the Year 2022
15+
- **[_2023](_2023)**: Solutions for Challenges for the Year 2023
716
- **[_2024](_2024)**: Solutions for Challenges for the Year 2024
817
- **[_2025](_2025)**: Solutions for Challenges for the Year 2025
918
- **[_2026](_2026)**: Solutions for Challenges for the Year 2026

_2015/Cargo.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "_2015"
3+
version = "0.1.0"
4+
edition = "2024"
5+
authors = ["Brian Obot <brianobot9@gmail.com>"]
6+
7+
[dependencies]
8+
9+
[[bin]]
10+
name = "day_1"
11+
path = "day_1.rs"

_2015/day_1.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fn main() {}

_2015/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

_2016/Cargo.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "_2016"
3+
version = "0.1.0"
4+
edition = "2024"
5+
authors = ["Brian Obot <brianobot9@gmail.com>"]
6+
7+
[dependencies]
8+
9+
[[bin]]
10+
name = "day_1"
11+
path = "day_1.rs"

_2016/day_1.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fn main() {}

_2016/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

_2017/Cargo.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "_2017"
3+
version = "0.1.0"
4+
edition = "2024"
5+
authors = ["Brian Obot <brianobot9@gmail.com>"]
6+
7+
[dependencies]
8+
9+
[[bin]]
10+
name = "day_1"
11+
path = "day_1.rs"

0 commit comments

Comments
 (0)