Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maewolff/advent-of-code-2024
🎄 Advent of Code - 2024
https://github.com/maewolff/advent-of-code-2024
advent-of-code bun typescript
Last synced: about 1 month ago
JSON representation
🎄 Advent of Code - 2024
- Host: GitHub
- URL: https://github.com/maewolff/advent-of-code-2024
- Owner: MaeWolff
- Created: 2024-12-01T06:11:04.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-03T07:01:35.000Z (about 1 month ago)
- Last Synced: 2024-12-03T08:18:23.398Z (about 1 month ago)
- Topics: advent-of-code, bun, typescript
- Language: TypeScript
- Homepage: https://adventofcode.com/2024
- Size: 27.3 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
Welcome to my repository for Advent of Code 2024! This project contains solutions to the daily puzzles of Advent of Code.
## Technologies Used
- **TypeScript**: The main language used to solve the challenges.
- **Bun**: The runtime environment chosen for this project, providing a fast and efficient way to run TypeScript code.## Installation
1. Clone this repository:
```bash
git clone https://github.com/MaeWolff/advent-of-code-2024.git
```2. Install the dependencies:
```bash
bun install
```## Running the puzzles
The puzzles are organized in directories like `day-01`, `day-02`, etc. Each day contains an input.txt file and a TypeScript script to solve that day's puzzle.
To run the script for a specific day, use the following command (replace XX with the day number):
```bash
bun run day-XX/index.ts
```