Skip to content

oreldx/advent-of-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repository contains my solutions for the Advent of Code challenges. Advent of Code is an annual event with daily programming puzzles that cover a range of difficulty levels and problem types.

Joined events:

Structure

Each year's challenges are organized in separate directories named year_YYYY, where YYYY represents the year. Within each year, each day's challenges are organized in separate directories named day_X, where X represents the day index as a 2 digits number.

AdventOfCode/
│
├── year_2023/
│   ├── day_01/
│   │   └── main.py
│   ├── day_02/
│   │   ├── main.py
│   ...
│
├── year_2024/
│   ├── day_01/
│   │   └── main.py
│   ├── day_02/
│   │   ├── main.py
│   ...

Running the Solutions

To run a solution, navigate to the specific day's directory and run the Python script for the part you're interested in. For example:

cd ./year_2023/day_01
python main.py

Progress

2023
2024

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages