Project Euler hosts fun challenges that combine mathematics, logic, and computer skills to find a solution ! 🧠
This repo is the product of my work and gathers the solutions I've come up with using Python. 🐍
- Clone this repository :
git clone https://github.com/perrindelort/Project-Euler
- Create a python environment :
- Using requirements.txt
conda create --file requirements.txt
- Using environment.yml
conda env create -f environment.yml
- Run a given solution :
python main.py -n <solution_number>