This repository contains my solutions for the Advent of Code challenges. The solutions are implemented in both Python and PHP.
project-root/ │ ├── dailys/ │ ├── advent_one.py │ ├── advent_two.py │ ├── advent_three.py │ └── advent_four.py │ ├── php/ │ └── advent_one.php │ ├── input.txt ├── memory.txt ├── text.txt └── README.md
To run the Python script, use the following commands:
python advent_py/advent_one.py
To run the PHP script, use the following command:
php advent_php/advent_one.php
Python 3.x PHP 7.x or higher