An open API service indexing awesome lists of open source software.

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

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)