Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phartenfeller/advent-of-code-2022
Advent of Code 2022 in Oracle
https://github.com/phartenfeller/advent-of-code-2022
advent-of-code adventofcode-oracle adventofcode2022 oracle plsql sql
Last synced: 21 days ago
JSON representation
Advent of Code 2022 in Oracle
- Host: GitHub
- URL: https://github.com/phartenfeller/advent-of-code-2022
- Owner: phartenfeller
- License: mit
- Created: 2022-12-01T10:02:37.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-15T20:30:34.000Z (about 2 years ago)
- Last Synced: 2025-01-06T02:19:31.520Z (27 days ago)
- Topics: advent-of-code, adventofcode-oracle, adventofcode2022, oracle, plsql, sql
- Language: PLSQL
- Homepage:
- Size: 42 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent Of Code 2022 in Oracle
- [Day 1: Calorie Counting](./src/01/) | [Blog](https://hartenfeller.dev/blog/advent-of-code-in-oracle-day-1)
- [Day 2: Rock Paper Scissors](./src/02/) | [Blog](https://hartenfeller.dev/blog/advent-of-code-in-oracle-day-2)
- [Day 3: Rucksack Reorganization](./src/03/) | [Blog](https://hartenfeller.dev/blog/advent-of-code-in-oracle-day-3)
- [Day 4: Camp Cleanup](./src/04/)
- [Day 5: Supply Stacks](./src/05/) | [Blog](https://hartenfeller.dev/blog/advent-of-code-in-oracle-day-5)
- [Day 6: Tuning Trouble](./src/06/)
- [Day 7: No Space Left On Device](./src/07/) | [Blog](https://hartenfeller.dev/blog/advent-of-code-in-oracle-day-7)
- [Day 8: Treetop Tree House](./src/08/)
- [Day 9: Rope Bridge](./src/09/)
- [Day 10: Cathode-Ray Tube](./src/10/) | [Blog](https://hartenfeller.dev/blog/advent-of-code-in-oracle-day-10)
- [Day 11: Monkey in the Middle](./src/11/)
- [Day 12: Hill Climbing Algorithm](./src/12/)
- [Day 13: Distress Signal](./src/13/)
- Day 14: TODO
- [Day 15: Beacon Exclusion Zone](./src/15/)## Input table
I used a table to store the input for each day: [input_table.sql](./input_table.sql)
## Helper PL/SQL Package
Get your daily input with [this package](https://gist.github.com/TysonJouglet/fefffe3ee4e874aeab2e42b2b1649f28) by [Tyson Jouglet](https://github.com/TysonJouglet).