Shaun Abram
Technology and Leadership Blog
Project Euler: Problem 3 in Ruby
Problem 3 in Project Euler is as follows:
The prime factors of 13195 are 5, 7, 13 and 29.
What is the largest prime factor of the number 600851475143 ?
I had previously solved this in Groovy/Java. Here is my Ruby solution…
Read my solution below
Project Euler: Problem 2 in Ruby
Problem 2 in Project Euler is as follows:
Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be:
1, 2, 3, 5, 8, 13, 21, 34, 55, 89, …
By considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the even-valued terms.
I had previously solved this in Groovy/Java. Here is my Ruby solution…
Read my solution below
Project Euler: Problem 1 in Ruby
In the process of trying to enhance my Ruby Skills, I am revisiting some of the Project Euler problems. I previously did problem 1 in Groovy/Java. Here is my Ruby solution.
Read my solution below