Warning
|
Spoiler Alert! If you want to solve the aoc problems on your own, do not read any further. This repository contains solutions for the problems in several languages. |
Note
|
Result can be found on doctoolchain.org/aoc-2022/. |
In this repository, we will collect the code for the solutions of adventofcode for the 2022 event.
If you want to join the discussions, here is the invitation for our slack channel.
The slack channel itself is aoc-2022
The id of the shared leaderboard is 117454-7d5aa225
.
... is to
-
have a shared code base. It will be interesting to see how the same problem is solved in different languages with different approaches
-
have a development environment in which all examples run out of the box
The best solution will be to use https://gitpod.io. Just prefix the URL with gitpod.io#
or click the button:
A webbased IDE will open with the repository already cloned in a docker container.
It would be awesome if we manage to get all solutions up and running in this container!
The standard gitpod.io docker container supports JavaScript, TypeScript, Java, Groovy, Ruby, Python, Go, C, C++, Rust, Perl out of the box.
At least Make, Gradle and Maven are available as build tools.
The structure we start with is the following:
.
├── README.md
├── day01
├── day02
│ ├── groovy
│ | └── rdmueller
│ | ├── solution.groovy
│ | └── README.adoc
│ └── [language]
│ └── [githubhandle]
│ ├── solution.[extension]
│ └── README.adoc
├── day03
├── day04
├── ...
As you can see in the above repository structure, each folder contains a README.adoc
.
It would be great if everybody could explain their solution with a short description inside this README.adoc
.
⇒ see you on Slack: aoc-2022