This repository contains my solutions to the AdventJS 2024 challenge, which is organized by midudev.
AdventJS is an annual event that helps developers improve their coding skills with 25 progressively harder challenges leading up to Christmas. The challenges are primarily focused on JavaScript and TypeScript, and in some cases Python. Each day, a new challenge is released, and participants are encouraged to solve it and share their solutions.
For more details on the challenge, visit the official platform: AdventJS.
git clone https://github.com/AntonioMrtz/AdventJS-2024.git
If using VSCODE there are scripts in .vscode
folder to run and debug Python and Typescript code for the solutions.
npm i
npx tsc x.ts && node x.js
npx jest
npx prettier . --write
python -m venv venv
source /venv/bin/activate
pip install -r requirements.txt
python x.py