1
0
mirror of https://github.com/chylex/Advent-of-Code.git synced 2025-03-05 06:32:53 +01:00

Add folder for Python scripts for 2022 & update README

This commit is contained in:
chylex 2022-12-03 08:36:53 +01:00
parent c199556965
commit 0fd3573077
Signed by: chylex
GPG Key ID: 4DE42C8F19A80548
2 changed files with 8 additions and 0 deletions

2
2022/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/.idea/*
!/.idea/runConfigurations

View File

@ -10,6 +10,12 @@ If you use JetBrains IDEs, you can open each year's folder in the appropriate ID
# Languages
## \[2022\] Python
The `2022` folder does not have any special project. You can run the `main.py` file in each day's folder directly using Python 3.11 or newer (older versions may also work, but this is not guaranteed).
You should be able to load the `2022` folder into [PyCharm](https://www.jetbrains.com/pycharm/).
## \[2021\] Kotlin
The `2021` folder contains a Gradle project (`build.gradle.kts`) that sets up every day as a source root and task that can be launched with `gradlew <day>` (for ex. `gradlew 01`).