Skip to content

Commit a5102f7

Browse files
committed
Recreate README.md without any copyrighted content
1 parent d09330d commit a5102f7

File tree

27 files changed

+126
-0
lines changed

27 files changed

+126
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,6 @@ hs_err_pid*
4343
# Maven
4444
log/
4545
target/
46+
47+
# Input
48+
*.input

README.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Advent of Code 2022
2+
3+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/b0a6ffd92df74afcae4f24ab5e208edf)](https://app.codacy.com/gh/Flashky/advent-of-code-2022/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
4+
[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/b0a6ffd92df74afcae4f24ab5e208edf)](https://app.codacy.com/gh/Flashky/advent-of-code-2022/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage)
5+
6+
- [Day 1 - Calorie Counting](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day01)
7+
- [Day 2 - Rock Paper Scissors](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day02)
8+
- [Day 3 - Rucksack Reorganization](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day03)
9+
- [Day 4 - Camp Cleanup](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day04)
10+
- [Day 5 - Supply Stacks](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day05)
11+
- [Day 6 - Tuning Trouble](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day06)
12+
- [Day 7 - No Space Left On Device](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day07)
13+
- [Day 8 - Treetop Tree House](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day08)
14+
- [Day 9 - Rope Bridge](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day09)
15+
- [Day 10 - Cathode-Ray Tube](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day10)
16+
- [Day 11 - Monkey in the Middle](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day11)
17+
- [Day 12 - Hill Climbing Algorithm](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day12)
18+
- [Day 13 - Distress Signal](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day13)
19+
- [Day 14 - Regolith Reservoir](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day14)
20+
- [Day 15 - Beacon Exclusion Zone](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day15)
21+
- [Day 16 - Proboscidea Volcanium](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day16)
22+
- [Day 17 - Pyroclastic Flow](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day17)
23+
- [Day 18 - Boiling Boulders](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day18)
24+
- [Day 19 - Not Enough Minerals](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day19)
25+
- [Day 20 - Grove Positioning System](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day20)
26+
- [Day 21 - Monkey Math](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day21)
27+
- [Day 22 - Monkey Map](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day22)
28+
- [Day 23 - Unstable Diffusion](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day23)
29+
- [Day 24 - Blizzard Basin](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day24)
30+
- [Day 25 - Full of Hot Air](https://github.com/Flashky/advent-of-code-2022/tree/master/src/main/java/com/adventofcode/flashk/day25)
31+
32+
## Cloning this repository
33+
34+
Without data repository:
35+
36+
```bash
37+
git clone https://github.com/Flashky/advent-of-code-2022.git
38+
```
39+
40+
Including data repository:
41+
42+
```
43+
git clone https://github.com/Flashky/advent-of-code-2022.git --recurse-submodules
44+
```
45+
46+
## About
47+
48+
- [Advent of Code](https://adventofcode.com/2022/about)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Day 1: Calorie Counting
2+
3+
[https://adventofcode.com/2022/day/1](https://adventofcode.com/2022/day/1)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Day 2: Rock Paper Scissors
2+
3+
[https://adventofcode.com/2022/day/2](https://adventofcode.com/2022/day/2)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Day 3: Rucksack Reorganization
2+
3+
[https://adventofcode.com/2022/day/3](https://adventofcode.com/2022/day/3)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Day 4: Camp Cleanup
2+
3+
[https://adventofcode.com/2022/day/4](https://adventofcode.com/2022/day/4)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Day 5: Supply Stacks
2+
3+
[https://adventofcode.com/2022/day/5](https://adventofcode.com/2022/day/5)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Day 6: Tuning Trouble
2+
3+
[https://adventofcode.com/2022/day/6](https://adventofcode.com/2022/day/6)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Day 7: No Space Left On Device
2+
3+
[https://adventofcode.com/2022/day/7](https://adventofcode.com/2022/day/7)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Day 8: Treetop Tree House
2+
3+
[https://adventofcode.com/2022/day/8](https://adventofcode.com/2022/day/8)

0 commit comments

Comments
 (0)