Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 2.19 KB

File metadata and controls

55 lines (39 loc) · 2.19 KB

AdventOfCode Personal Solutions

This repository contains personal solutions by Adjanour for various Advent of Code programming challenges. Each day's solutions are organized by folder, and multiple programming languages are used to explore and solve the puzzles.

Structure

Languages Used

  • Python (Day-1)
  • TypeScript (Day-2)
  • Go (Day-3 & Day-5)
  • Other (Day-2.exe, PDF in Day-5)

How to Run

Each day’s directory contains code and sometimes tests.

  • For Python: Run scripts with python part_one.py, etc.
  • For TypeScript: Use Deno (deno run main.ts) and refer to deno.json.
  • For Go: Run with go run main.go.

Some directories may contain binaries or PDFs unrelated to Advent of Code solutions.

Notes

  • Solutions are personal, demonstrating different approaches and languages.
  • Some files (e.g., binaries, PDFs) may not be directly runnable or related to AoC puzzles.
  • .idea/ folders are IDE configuration files and not required for running solutions.

Happy coding! 🎄