Posts

Showing posts from March, 2020

Largest Palindrome Product

Image
Largest Palindrome Product Challenge 4  (Project Euler) In this challenge, I had to get the largest palindrome product of three digits which ranges from 100 to 999.  This is the fourth challenge that I have solved on Project Euler and as of 1/19/2020, this challenge has been solved by 459006 people.  The steps involved in solving this challenge comprised of multiplying every combination of numbers in the three-digit range. The next step was checking to see if the number was a palindrome number meaning when the number has reversed the sequence of the number remained the same, palindrome numbers include the following 9009, 1111, 3773, and 80008. The final step was checking to see was that the palindrome number is bigger than the previous palindrome number from the past iteration.  Largest Palindrome Product Output  The solution to this challenge can be found on my Github at Largest Palindrome Product . The outpu...

Even Fibonacci Numbers

Image
Even Fibonacci Numbers Challenge 2  (Project Euler) This challenge compresses of displaying even Fibonacci Numbers starting at 2 and going all the up to 63245986. As of 12/23/2019, it has been solved by 721086 and it is a simple challenge to solve and can be found at Project Euler Even Fibonacci Numbers . My solution to this challenge is available on my Github at coding-challenges .  Even Fibonacci Number - Project Euler Output  The steps involved in solving was simply getting the Fibonacci Numbers and then checking each number to see if it is divisible by two and then displaying the output to the console.  " 2, 8, 34, 144, 610, 2584, 10946, 46368, 196418, 832040, 3524578, 14930352, 63245986 "