Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/erictleung/euler-problems
:triangular_ruler: Scripts to Solve Project Euler Problems
https://github.com/erictleung/euler-problems
algorithms mathematics programming project-euler
Last synced: 17 days ago
JSON representation
:triangular_ruler: Scripts to Solve Project Euler Problems
- Host: GitHub
- URL: https://github.com/erictleung/euler-problems
- Owner: erictleung
- Created: 2013-12-17T20:14:42.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-02-07T03:48:47.000Z (almost 9 years ago)
- Last Synced: 2024-06-11T23:05:01.994Z (7 months ago)
- Topics: algorithms, mathematics, programming, project-euler
- Language: Perl
- Homepage:
- Size: 83 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Solving Project Euler Problems
These are a collection of scripts that will solve problems from Project Euler
(at www.projecteuler.net).| ID | Title | Script Name | Date First Solved |
|----|-------|-------------|-------------------|
| 1 | Multiples of 3 and 5 | `multiples3And5` | 15 Jun 2013 |
| 2 | Even Fibonacci Numbers | `evenFibo` | 15 Jun 2013 |
| 3 | Largest prime factor | `largestPrimeFactor` | 15 Jun 2013 |
| 4 | Largest palindrome product | `largestPalindromeProduct` | 15 Jun 2013 |
| 5 | Smallest multiple | (Completed by hand) | 15 Jun 2013 |
| 6 | Sum square difference | `sumSquareDiff` | 16 Jun 2013 |
| 7 | 10,001st prime | `10001Prime` | 16 Jun 2013 |
| 8 | Largest product in a series | `largestProductInSeries` | 16 Jun 2013 |
| 9 | Special Pythagorean triplet | `specialPythagoreanTrip` | 18 Jun 2013 |
| 10 | Summation of primes | `sumOfPrimes` | 18 Jun 2013 |
| 11 | Largest product in a grid | (Used Excel to find numbers) | 28 Dec 2013 |
| 12 | Highly divisible triangular number | `highDivisibleTriangleNum` | 27 Dec 2013 |
| 13 | Large sum | `largeSum` | 27 Dec 2013 |
| 14 | Longest Collatz sequence | `longestCollatzSeq` | 29 Dec 2013 |
| 15 | Lattice paths | (Used combinatorics) | 1 Jun 2014 |
| 16 | Power digit sum | | 6 Jan 2014 |
| 17 | Number letter counts | `numLetterCounts` | 8 Jun 2014 |