https://github.com/jakobkmar/advent-of-code-2024
Solutions for Advent of Code 2024
https://github.com/jakobkmar/advent-of-code-2024
Last synced: 9 months ago
JSON representation
Solutions for Advent of Code 2024
- Host: GitHub
- URL: https://github.com/jakobkmar/advent-of-code-2024
- Owner: jakobkmar
- Created: 2024-12-01T20:53:04.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-09T11:01:13.000Z (about 1 year ago)
- Last Synced: 2025-01-29T20:49:37.445Z (11 months ago)
- Language: Python
- Size: 227 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Advent of Code 2024
My Advent of Code 2024 repo! This repository contains solutions and sometimes explanations for the Advent of Code 2024 challenges.
## Running the Code
Place your input alongside the day folders.
**Python**:
```sh
python day01.py
```
**Typst**:
```sh
typst compile day01.typ
```
## Structure
The repository is structured as follows:
```plaintext
.
├── day01
│ ├── day01.py
│ ├── day01.typ
│ ├── input.txt
│ └── test_input.txt
├── day02
│ ├── day02.py
│ ├── day02.typ
│ ├── input.txt
│ └── test_input.txt
└── ...
```