AdventOfCode2022/README.md

33 lines
1.2 KiB
Markdown
Raw Normal View History

2022-12-03 03:57:05 +01:00
# Advent of code 2022 :christmas_tree:
2022-12-03 03:10:02 +01:00
This is a repository for my solutions for the [advent of code 2022](https://adventofcode.com/2022).
2022-12-03 03:01:06 +01:00
2022-12-06 20:28:27 +01:00
## About
2022-12-04 01:12:24 +01:00
I will try to use as many different languages as I can.
I am not necessarily trying to do it the best or most efficient way, nor choose the best language for job.
The directories for each day contain my input file, my code and a README that shows how to run the code and what approach I used.
2022-12-03 03:01:06 +01:00
2022-12-06 20:28:27 +01:00
## Recommended Days
These are the days with to most interesting code so far:
2022-12-18 15:33:52 +01:00
1. **day 13**: *HolyC* on a TempleOS virtual machine
2. **day 4**: *x86-64 assembly* with the help of ChatGPT
3. **day 6**: *html+javascript* [check it out here](https://quintern.xyz/advent22/day6.html)
4. **day 7**: *awk+bash*
2022-12-05 14:29:36 +01:00
2022-12-08 01:46:51 +01:00
Also, check out the repositories of my friends who do stuff in go, Visual Basic, php and many other languages!
2022-12-03 03:10:02 +01:00
- [Daniel](https://git.quintern.xyz/TheShinyMelon/AOC_2022)
- [Jonas](https://github.com/JonasBordewick/advent_of_code_2022)
2022-12-06 20:28:27 +01:00
## Language - Day
2022-12-08 01:46:51 +01:00
- **Awk**: day 1, 7
2022-12-06 20:28:27 +01:00
- **Assembly, x86-64**: day 4
2022-12-08 01:46:51 +01:00
- **Bash**: day 1, 7
2022-12-06 20:28:27 +01:00
- **C**: day 3, 4
2022-12-19 00:56:57 +01:00
- **C++**: day 2, 8, 12, 14
2022-12-18 15:33:52 +01:00
- **HolyC:** day 13
2022-12-11 02:12:06 +01:00
- **Java**: day 10
2022-12-06 20:28:27 +01:00
- **Javascript**: day 6
2022-12-10 23:21:30 +01:00
- **php**: day 9
2022-12-12 13:49:44 +01:00
- **Python**: day 5, 11
2022-12-08 01:46:51 +01:00
- **VIM-Script**: day 3