Skip to content

Commit 07e894b

Browse files
committed
2018 done β†’ all done 😎
1 parent aa820b5 commit 07e894b

File tree

11 files changed

+422
-6
lines changed

11 files changed

+422
-6
lines changed

β€Ž2018/Cargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# https://adventofcode.com/2018
22

33
[workspace]
4-
members = ["day*", "toto"]
4+
members = ["day*"]
55

66
resolver = "2"

β€Ž2018/README.mdβ€Ž

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Advent of Code in Rust πŸ¦€
22

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

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

1010
Puzzle | Stars | Languages
1111
------------------------------------------------------------------------------------ | ----- | -----------
@@ -23,6 +23,7 @@ Puzzle
2323
[Day 12: Subterranean Sustainability](https://adventofcode.com/2018/day/12) | ⭐⭐ | [Rust](../2018/day12/day12.rs)
2424
[Day 13: Mine Cart Madness](https://adventofcode.com/2018/day/13) | ⭐⭐ | [Rust](../2018/day13/day13.rs)
2525
[Day 14: Chocolate Charts](https://adventofcode.com/2018/day/14) | ⭐⭐ | [Rust](../2018/day14/day14.rs)
26+
[Day 15: Beverage Bandits](https://adventofcode.com/2018/day/15) | ⭐⭐ | [Rust](../2018/day15/day15.rs)
2627
[Day 16: Chronal Classification](https://adventofcode.com/2018/day/16) | ⭐⭐ | [Rust](../2018/day16/day16.rs) [Python](../2018/day16/day16.py)
2728
[Day 17: Reservoir Research](https://adventofcode.com/2018/day/17) | ⭐⭐ | [Rust](../2018/day17/day17.rs)
2829
[Day 18: Settlers of The North Pole](https://adventofcode.com/2018/day/18) | ⭐⭐ | [Rust](../2018/day18/day18.rs) [Python](../2018/day18/day18.py)
@@ -31,4 +32,5 @@ Puzzle
3132
[Day 21: Chronal Conversion](https://adventofcode.com/2018/day/21) | ⭐⭐ | [Rust](../2018/day21/day21.rs)
3233
[Day 22: Mode Maze](https://adventofcode.com/2018/day/22) | ⭐⭐ | [Rust](../2018/day22/day22.rs)
3334
[Day 23: Experimental Emergency Teleportation](https://adventofcode.com/2018/day/23) | ⭐⭐ | [Rust](../2018/day23/day23.rs)
34-
[Day 25: Four-Dimensional Adventure](https://adventofcode.com/2018/day/25) | ⭐ | [Rust](../2018/day25/day25.rs)
35+
[Day 24: Immune System Simulator 20XX](https://adventofcode.com/2018/day/24) | ⭐⭐ | [Rust](../2018/day24/src/main.rs)
36+
[Day 25: Four-Dimensional Adventure](https://adventofcode.com/2018/day/25) | ⭐⭐ | [Rust](../2018/day25/day25.rs)

β€Ž2018/day15/Cargo.tomlβ€Ž

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "day15"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
aoc = { path = "../../aoc" }
8+
9+
[[bin]]
10+
name = "day15"
11+
path = "day15.rs"

0 commit comments

Comments
Β (0)