Skip to content

LorranSutter/advent-of-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🎄 Advent of Code

This repository contains my solutions for the Advent of Code event.

Advent of Code is an annual coding challenge that runs from December 1st to December 25th, featuring daily programming puzzles of varying difficulty.

Creating a New Puzzle

To create a new puzzle structure, use the new_puzzle.sh script:

./new_puzzle.sh <year> <day>

Example:

./new_puzzle.sh 2025 1

This will create:

  • A folder structure: 2025/day01/
  • main.py with a template for part 1 and part 2
  • input.txt for the puzzle input
  • input_sample.txt for sample/test input

Running Solutions

You can run the solutions in two ways:

As a Python Module

python3 -m 2025.day01.main

As a Script

python3 ./2025/day01/main.py

Replace 2025 with the desired year and day01 with the specific day you want to run.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published