An open API service indexing awesome lists of open source software.

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

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
└── ...
```