- The prime factors of 13195 are 5, 7, 13 and 29. The largest prime factor in this case is 29.
- What is the largest prime factor of the number 600851475143 ?
- Code your procedural solution into the
lib/largest_prime_factor.rb
file. - Code your object-oriented solution into the
lib/oo_largest_prime_factor.rb
file. Make sure that you set the largest prime factor equal to thenumber
attribute of theLargestPrimeFactor
class. - Run
learn
until you get all of the RSpec tests to pass.
View Project Euler on Learn.co and start learning to code for free.