https://github.com/windos/advent-of-code-2022
My Advent of Code 2022 PowerShell Solutions
https://github.com/windos/advent-of-code-2022
Last synced: about 2 months ago
JSON representation
My Advent of Code 2022 PowerShell Solutions
- Host: GitHub
- URL: https://github.com/windos/advent-of-code-2022
- Owner: Windos
- License: apache-2.0
- Created: 2022-12-09T09:11:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-10T23:02:54.000Z (over 3 years ago)
- Last Synced: 2025-02-28T20:43:00.713Z (over 1 year ago)
- Language: PowerShell
- Size: 31.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2022


My Advent of Code 2022 PowerShell Solutions.
| Day | Puzzle | Solution |
|-----|-----------------------------------------------------------------|------------------------------------------------------------------------|
| 01 | [Calorie Counting](https://adventofcode.com/2022/day/1) | [Part 1](src/Day01/Day01-1.ps1) | [Part 2](src/Day01/Day01-2.ps1) |
| 02 | [Rock Paper Scissors](https://adventofcode.com/2022/day/2) | [Part 1](src/Day02/Day02-1.ps1) | [Part 2](src/Day02/Day02-2.ps1) |
| 03 | [Rucksack Reorganization](https://adventofcode.com/2022/day/3) | [Part 1](src/Day03/Day03-1.ps1) | [Part 2](src/Day03/Day03-2.ps1) |
| 04 | [Camp Cleanup](https://adventofcode.com/2022/day/4) | [Part 1](src/Day04/Day04-1.ps1) | [Part 2](src/Day04/Day04-2.ps1) |
| 05 | [Supply Stacks](https://adventofcode.com/2022/day/5) | [Part 1](src/Day05/Day05-1.ps1) | [Part 2](src/Day05/Day05-2.ps1) |
| 06 | [Tuning Trouble](https://adventofcode.com/2022/day/6) | [Part 1](src/Day06/Day06-1.ps1) | [Part 2](src/Day06/Day06-2.ps1) |
| 07 | [No Space Left On Device](https://adventofcode.com/2022/day/7) | [Part 1](src/Day07/Day07-1.ps1) | [Part 2](src/Day07/Day07-2.ps1) |
| 08 | [Treetop Tree House](https://adventofcode.com/2022/day/8) | [Part 1](src/Day08/Day08-1.ps1) | [Part 2](src/Day08/Day08-2.ps1) |
| 09 | [Rope Bridge](https://adventofcode.com/2022/day/9) | [Part 1](src/Day09/Day09-1.ps1) | [Part 2](src/Day09/Day09-2.ps1) |
| 10 | [Cathode-Ray Tube](https://adventofcode.com/2022/day/10) | [Part 1](src/Day10/Day10-1.ps1) | [Part 2](src/Day10/Day10-2.ps1) |