Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hph/euler.rb
Solutions to Project Euler problems in Ruby
https://github.com/hph/euler.rb
Last synced: 10 days ago
JSON representation
Solutions to Project Euler problems in Ruby
- Host: GitHub
- URL: https://github.com/hph/euler.rb
- Owner: hph
- License: mit
- Created: 2013-12-14T19:38:40.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-02T05:30:18.000Z (almost 11 years ago)
- Last Synced: 2024-10-13T07:45:20.232Z (25 days ago)
- Language: Ruby
- Homepage:
- Size: 352 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
euler.rb
========Solutions to Project Euler problems in functional Ruby.
The solutions aim to be concise and readable but not necessarily optimized and
fast. Some of the problems have more than one solution to illustrate different
algorithms or language features.You will need to run `bundle` to install dependencies before running the
program (requires Ruby v2.1.0 or higher).Running `./euler.rb` will show something like this:
#1: Multiples of 3 and 5 (using Enumerable#select)
Solution: [REDACTED]
Duration: 0.000173000#1: Multiples of 3 and 5 (using Array#uniq)
Solution: [REDACTED]
Duration: 0.000217000#1: Multiples of 3 and 5 (using Set#union)
Solution: [REDACTED]
Duration: 0.000411000#2: Even Fibonacci numbers
Solution: [REDACTED]
Duration: 0.000049000#3: Largest prime factor
Solution: [REDACTED]
Duration: 0.000402000#4: Largest palindrome product
Solution: [REDACTED]
Duration: 0.375302000#5: Smallest multiple
Solution: [REDACTED]
Duration: 0.000016000#6: Sum square difference
Solution: [REDACTED]
Duration: 0.000039000#7: 10001st prime
Solution: [REDACTED]
Duration: 0.023675000#8: Largest product in a series
Solution: [REDACTED]
Duration: 0.001503000#9: Special Pythagorean triplet
Solution: [REDACTED]
Duration: 0.032407000#10: Summation of primes
Solution: [REDACTED]
Duration: 0.343563000#13: Large sum
Solution: [REDACTED]
Duration: 0.000311000#14: Longest Collatz sequence
Solution: [REDACTED]
Duration: 11.016418000#15: Lattice paths
Solution: [REDACTED]
Duration: 0.000027000#16: Power digit sum
Solution: [REDACTED]
Duration: 0.000110000#17: Number letter counts
Solution: [REDACTED]
Duration: 0.003618000#18: Maximum path sum I
Solution: [REDACTED]
Duration: 0.000193000#19: Counting Sundays
Solution: [REDACTED]
Duration: 0.000598000#20: Factorial digit sum
Solution: [REDACTED]
Duration: 0.000100000#24: Lexicographic permutations
Solution: [REDACTED]
Duration: 0.545315000#25: 1000-digit Fibonacci number
Solution: [REDACTED]
Duration: 0.086169000#29: Distinct powers
Solution: [REDACTED]
Duration: 0.014427000#35: Circular primes
Solution: [REDACTED]
Duration: 8.827861000#36: Double-base palindromes
Solution: [REDACTED]
Duration: 0.451829000#42: Coded triangle numbers
Solution: [REDACTED]
Duration: 0.007511000#47: Distinct prime factors
Solution: [REDACTED]
Duration: 3.854093000#48: Self powers
Solution: [REDACTED]
Duration: 0.011340000Total duration: 25.598
You may specify a range of problems to solve:
./euler.rb 2..4
#2: Even Fibonacci numbers
Solution: [REDACTED]
Duration: 0.000059000#3: Largest prime factor
Solution: [REDACTED]
Duration: 0.000399000#4: Largest palindrome product
Solution: [REDACTED]
Duration: 0.369261000Total duration: 0.380
You may also specify a comma-separated list of problems to solve:
./euler.rb 2,3,5
#2: Even Fibonacci numbers
Solution: [REDACTED]
Duration: 0.000054000#3: Largest prime factor
Solution: [REDACTED]
Duration: 0.000466000#5: Smallest multiple
Solution: [REDACTED]
Duration: 0.000016000Total duration: 0.370