https://github.com/teddyoweh/project-euler
Used dynamic programming, graph theory, linear algebra, probability theory, combinatorics, calculus, etc to solve 50+ computational mathematics problems with highest difficulty problems
https://github.com/teddyoweh/project-euler
Last synced: 28 days ago
JSON representation
Used dynamic programming, graph theory, linear algebra, probability theory, combinatorics, calculus, etc to solve 50+ computational mathematics problems with highest difficulty problems
- Host: GitHub
- URL: https://github.com/teddyoweh/project-euler
- Owner: teddyoweh
- Created: 2023-10-10T02:38:56.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-06T07:57:56.000Z (over 1 year ago)
- Last Synced: 2025-03-24T00:23:15.343Z (6 months ago)
- Language: C
- Size: 9.77 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project Euler
Used dynamic programming, graph theory, linear algebra, probability theory, combinatorics, calculus, etc to solve 50+ computational mathematics problems with highest difficulty problems| Problem | Source Code |
|-----------------------------------------|--------------------------------------|
| [Multiples of 3 or 5](https://projecteuler.net/problem=1) | [problem1.c](./c/problem1.c)
| [Even Fibonacci Numbers](https://projecteuler.net/problem=2) | [problem2.c](./c/problem2.c)
| [Largest Prime Factor](https://projecteuler.net/problem=3) | [problem3.c](./c/problem3.c)
| [Largest Palindrome Product](https://projecteuler.net/problem=4) | [problem4.c](./c/problem4.c)