Skip to content

Commit

Permalink
2018 done β†’ all done 😎
Browse files Browse the repository at this point in the history
  • Loading branch information
rene-d committed Feb 1, 2024
1 parent aa820b5 commit 07e894b
Show file tree
Hide file tree
Showing 11 changed files with 422 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 2018/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# https://adventofcode.com/2018

[workspace]
members = ["day*", "toto"]
members = ["day*"]

resolver = "2"
10 changes: 6 additions & 4 deletions 2018/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Advent of Code in Rust πŸ¦€

![AoC2018](https://img.shields.io/badge/Advent_of_Code-2018-8A2BE2)
![Stars: 45](https://img.shields.io/badge/Stars-45⭐-blue)
![Rust: 23](https://img.shields.io/badge/Rust-23-cyan?logo=Rust)
![Stars: 50](https://img.shields.io/badge/Stars-50⭐-blue)
![Rust: 25](https://img.shields.io/badge/Rust-25-cyan?logo=Rust)
![Python: 4](https://img.shields.io/badge/Python-4-cyan?logo=Python)

## 2018 ([Calendar](https://adventofcode.com/2018)) ([Solutions](../2018/)) : 45⭐
## 2018 ([Calendar](https://adventofcode.com/2018)) ([Solutions](../2018/)) : 50⭐

Puzzle | Stars | Languages
------------------------------------------------------------------------------------ | ----- | -----------
Expand All @@ -23,6 +23,7 @@ Puzzle
[Day 12: Subterranean Sustainability](https://adventofcode.com/2018/day/12) | ⭐⭐ | [Rust](../2018/day12/day12.rs)
[Day 13: Mine Cart Madness](https://adventofcode.com/2018/day/13) | ⭐⭐ | [Rust](../2018/day13/day13.rs)
[Day 14: Chocolate Charts](https://adventofcode.com/2018/day/14) | ⭐⭐ | [Rust](../2018/day14/day14.rs)
[Day 15: Beverage Bandits](https://adventofcode.com/2018/day/15) | ⭐⭐ | [Rust](../2018/day15/day15.rs)
[Day 16: Chronal Classification](https://adventofcode.com/2018/day/16) | ⭐⭐ | [Rust](../2018/day16/day16.rs) [Python](../2018/day16/day16.py)
[Day 17: Reservoir Research](https://adventofcode.com/2018/day/17) | ⭐⭐ | [Rust](../2018/day17/day17.rs)
[Day 18: Settlers of The North Pole](https://adventofcode.com/2018/day/18) | ⭐⭐ | [Rust](../2018/day18/day18.rs) [Python](../2018/day18/day18.py)
Expand All @@ -31,4 +32,5 @@ Puzzle
[Day 21: Chronal Conversion](https://adventofcode.com/2018/day/21) | ⭐⭐ | [Rust](../2018/day21/day21.rs)
[Day 22: Mode Maze](https://adventofcode.com/2018/day/22) | ⭐⭐ | [Rust](../2018/day22/day22.rs)
[Day 23: Experimental Emergency Teleportation](https://adventofcode.com/2018/day/23) | ⭐⭐ | [Rust](../2018/day23/day23.rs)
[Day 25: Four-Dimensional Adventure](https://adventofcode.com/2018/day/25) | ⭐ | [Rust](../2018/day25/day25.rs)
[Day 24: Immune System Simulator 20XX](https://adventofcode.com/2018/day/24) | ⭐⭐ | [Rust](../2018/day24/src/main.rs)
[Day 25: Four-Dimensional Adventure](https://adventofcode.com/2018/day/25) | ⭐⭐ | [Rust](../2018/day25/day25.rs)
11 changes: 11 additions & 0 deletions 2018/day15/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "day15"
version = "0.1.0"
edition = "2021"

[dependencies]
aoc = { path = "../../aoc" }

[[bin]]
name = "day15"
path = "day15.rs"
Loading

0 comments on commit 07e894b

Please sign in to comment.