Skip to content

Latest commit

Β 

History

History
69 lines (51 loc) Β· 2.11 KB

readme.md

File metadata and controls

69 lines (51 loc) Β· 2.11 KB

πŸŽ„ Advent of Code πŸŽ„

Welcome to my Advent of Code repository! This repo contains my solutions to the coding challenges presented daily during the Advent of Code event in December.

Advent of Code is an annual programming challenge that runs from December 1st to December 25th, featuring fun and tricky problems designed to enhance your coding and problem-solving skills.

πŸ› οΈ Setup

To run the solutions locally, you'll need:

Steps:

  1. Clone this repository:
    git clone https://github.com/fabioavelino/advent-of-code.git
    cd advent-of-code
  2. Run a puzzle solution (for example, for 2024, the Day 1):
    cd 2024/1  # Example for 2024, Day 1
    node index.js # The console will return part one and part two response
    ⚠️ You will need to copy your input data in each puzzle folder and named it input in order to run the solution ⚠️.

πŸ“‚ Structure

The repository is organized as follows:

advent-of-code/  
β”‚
β”œβ”€β”€ 2024/  
β”‚   β”œβ”€β”€ 1/
β”‚       β”œβ”€β”€ input       # Your puzzle input for Day 1  
β”‚       └── index.js    # Solution for Day 1 with several comments
β”‚   β”œβ”€β”€ ...
β”‚  
└── README.md          # This file  

Each day has its folder containing:

  • input: The input data for the puzzle, never present in this repo.
  • index.js: My implementation of the solution, with comments for explaining each steps.


πŸ“ˆ Progress

Day Puzzle Name Part 1 Part 2
1 ⭐ Historian Hysteria ⭐ βœ… βœ…
2 ⭐ Red-Nosed Reports ⭐ βœ… βœ…
3 ⭐ Mull It Over ⭐ βœ… βœ…
4 ⭐ Ceres Search ⭐ βœ… βœ…
... ... ... ...

βœ… Completed
⏳ In Progress
❌ Not Attempted


πŸ“œ License

This project is licensed under the MIT License. See the LICENSE file for details.