/aoc-2023

Solutions for the Advent of Code 2023

Primary LanguageJupyter NotebookMIT LicenseMIT

Advent of Code 2023

This repository contains my solutions to the Advent of Code 2023 challenges, solved in Python using Jupyter notebooks.

Repository Structure

The repository is organized into folders for each Advent of Code challenge day. Inside each folder, you will find:

  • day-X.ipynb: Jupyter notebook containing the Python code for the solutions to the challenges of day X.
  • input.txt: Input data necessary for solving the challenges of day X.

Getting Started

To explore the solutions and code, simply navigate to the respective day's folder and open the day-X.ipynb notebook.

Prerequisites

To run the notebooks locally, you'll need:

  • Python
  • Jupyter Notebook or JupyterLab

Running the Notebooks

  1. Clone this repository to your local machine using:

    git clone https://github.com/biromiro/aoc-2023.git
  2. Navigate to the day's folder you wish to explore:

    cd aoc-2023/day-X
  3. Launch Jupyter Notebook or JupyterLab:

    jupyter notebook  # or jupyter lab
  4. Open the day-X.ipynb notebook and run the cells to see the solutions and explanations.

Advent of Code

Advent of Code is an annual coding event with daily coding challenges released in December. Learn more and participate at Advent of Code.

Author

Disclaimer

These solutions are provided for educational purposes. Feel free to explore, learn, and compare, but consider solving the challenges yourself for the best learning experience.

Happy coding and happy Advent of Code 2023! 🎄🌟

(Thanks ChatGPT for the README :) )