Skip to content

Commit 1933633

Browse files
authored
Merge pull request #9 from leifgehrmann/day09
Day 09 - Rope Bridge 🪢
2 parents 371851a + 2e53e0a commit 1933633

File tree

5 files changed

+2177
-3
lines changed

5 files changed

+2177
-3
lines changed

.github/workflows/Day-09.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Day-09
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
paths:
7+
- '**09*'
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Build
16+
run: cargo build --release --verbose
17+
- name: Run
18+
run: time target/release/aoc 09

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This is primarily a learning experience, and the code may not be following best
1616
| 6 | Tuning Trouble | [src/day_06.rs](src/day_06.rs) | [src/day_06.data](src/day_06.data) | `0m0.002s` | [![Day-06](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-06.yml/badge.svg?branch=main)](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-06.yml?query=branch%3Amain)
1717
| 7 | No Space Left On Device | [src/day_07.rs](src/day_07.rs) | [src/day_07.data](src/day_07.data) | `0m0.002s` | [![Day-07](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-07.yml/badge.svg?branch=main)](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-07.yml?query=branch%3Amain)
1818
| 8 | Treetop Tree House | [src/day_08.rs](src/day_08.rs) | [src/day_08.data](src/day_08.data) | `0m0.002s` | [![Day-08](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-08.yml/badge.svg?branch=main)](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-08.yml?query=branch%3Amain)
19-
| 9 | Rope Bridge | | | |
19+
| 9 | Rope Bridge | [src/day_09.rs](src/day_09.rs) | [src/day_09.data](src/day_09.data) | `0m0.007s` | [![Day-09](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-09.yml/badge.svg?branch=main)](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-09.yml?query=branch%3Amain)
2020
| 10 | Cathode-Ray Tube | [src/day_10.rs](src/day_10.rs) | [src/day_10.data](src/day_10.data) | `0m0.003s` | [![Day-10](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-10.yml/badge.svg?branch=main)](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-10.yml?query=branch%3Amain)
2121
| 11 | Monkey in the Middle | [src/day_11.rs](src/day_11.rs) | [src/day_11.data](src/day_11.data) | `0m0.030s` | [![Day-11](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-11.yml/badge.svg?branch=main)](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-11.yml?query=branch%3Amain)
2222
| 12 | Hill Climbing Algorithm | [src/day_12.rs](src/day_12.rs) | [src/day_12.data](src/day_12.data) | `0m0.053s` | [![Day-12](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-12.yml/badge.svg?branch=main)](https://github.com/leifgehrmann/advent-of-code-2022/actions/workflows/Day-12.yml?query=branch%3Amain)

0 commit comments

Comments
 (0)