https://github.com/mateuseap/projecteuler
Resolution of Project Euler problems.
https://github.com/mateuseap/projecteuler
c cpp csharp projecteuler python
Last synced: 2 months ago
JSON representation
Resolution of Project Euler problems.
- Host: GitHub
- URL: https://github.com/mateuseap/projecteuler
- Owner: mateuseap
- Created: 2021-10-01T16:39:14.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-02T01:54:02.000Z (over 4 years ago)
- Last Synced: 2025-04-05T22:11:40.801Z (about 1 year ago)
- Topics: c, cpp, csharp, projecteuler, python
- Language: C#
- Homepage:
- Size: 323 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ProjectEuler
 
### 🧮 What is [Project Euler](https://projecteuler.net/)?
Project Euler is a series of challenging problems that require mathematical and programming skills. For somebody who enjoys learning new areas of mathematics, Project Euler is going to be a fun journey.
### 🔗 Problems Solved:
Problem 1 - Multiples of 3 or 5
- [Code](https://github.com/mateuseap/ProjectEuler/blob/main/Problems%20Solved/Problem%201%20-%20Multiples%20of%203%20or%205/problem1.c)
- [Problem description and its answer](https://github.com/mateuseap/ProjectEuler/blob/main/Problems%20Solved/Problem%201%20-%20Multiples%20of%203%20or%205/%231%20Multiples%20of%203%20or%205%20-%20Project%20Euler.pdf)
Problem 2 - Even Fibonacci numbers
- [Code](https://github.com/mateuseap/ProjectEuler/blob/main/Problems%20Solved/Problem%202%20-%20Even%20Fibonacci%20numbers/problem2/Program.cs)
- [Problem description and its answer](https://github.com/mateuseap/ProjectEuler/blob/main/Problems%20Solved/Problem%202%20-%20Even%20Fibonacci%20numbers/%232%20Even%20Fibonacci%20numbers%20-%20Project%20Euler.pdf)
Problem 7 - 10001st prime
- [Code](https://github.com/mateuseap/ProjectEuler/blob/main/Problems%20Solved/Problem%207%20-%2010001st%20prime/problem7.py)
- [Problem description and its answer](https://github.com/mateuseap/ProjectEuler/blob/main/Problems%20Solved/Problem%207%20-%2010001st%20prime/%237%2010001st%20prime%20-%20Project%20Euler.pdf)
Problem 10 - Summation of primes
- [Code](https://github.com/mateuseap/ProjectEuler/blob/main/Problems%20Solved/Problem%2010%20-%20Summation%20of%20primes/problem10.cpp)
- [Problem description and its answer](https://github.com/mateuseap/ProjectEuler/blob/main/Problems%20Solved/Problem%2010%20-%20Summation%20of%20primes/%2310%20Summation%20of%20primes%20-%20Project%20Euler.pdf)
Problem 12 - Highly divisible triangular number
- [Code](https://github.com/mateuseap/ProjectEuler/blob/main/Problems%20Solved/Problem%2012%20-%20Highly%20divisible%20triangular%20number/problem12.py)
- [Problem description and its answer](https://github.com/mateuseap/ProjectEuler/blob/main/Problems%20Solved/Problem%2012%20-%20Highly%20divisible%20triangular%20number/%2312%20Highly%20divisible%20triangular%20number%20-%20Project%20Euler.pdf)