|
| 1 | +# Advent of Code 2022 |
| 2 | + |
| 3 | +[](https://app.codacy.com/gh/Flashky/advent-of-code-2022/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade) |
| 4 | +[](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) |
0 commit comments