Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 995 Bytes

File metadata and controls

23 lines (14 loc) · 995 Bytes

Project Euler Solutions (Python) 🧮

This repository contains my personal solutions to the mathematical and computer science problems found in the Project Euler archives, implemented in Python.

🔗 About the Problems

You can find the original problem descriptions and details at the link below: 👉 Project Euler Archives

📂 File Structure & Naming Convention

The files are named corresponding to the problem numbers on Project Euler:

  • Test{X}.py: Contains the completed and verified solution for problem X.
  • Test{X}NO.py: Indicates that the solution for problem X is currently in progress or unsolved (e.g., Test24NO.py, Test31NO.py).

🚀 Usage

To test the solutions on your local machine, ensure you have Python installed. You can run a specific solution using the command line:

# Example: Running the solution for Problem 25
python Test25.py