Sunday, 17 July 2016

Problem #2 Solved

Here comes the solution for the Problem #2 of Project Euler.

---------------------
THE PROBLEM
---------------------
Even Fibonacci Terms
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.

----------------------
THE SOLUTION
----------------------
Check it out here: Google Drive

Thanks for visiting. Keep on doing it...

Problem #1 Solved

Hi friends,
Here comes the solution to the very first problem from project Euler.
---------------------
THE PROBLEM:
---------------------
Multiples of 3 and 5
If we list all the numbers below 10 that are the multiples of 3 or 5, we get 3,5,6 and 9. The sum of these multiples is 23.

Find the sum of all the multiples of 3 or 5 below 1000

----------------------
THE SOLUTION:
----------------------
Check it out here: Google Drive


Thanks for giving it a look. More solutions incoming! Stay tuned!

About Project Euler

Project Euler is a collection of problems to hone your skills both as a mathematician and a programmer. You got to solve those problems using any programming language and then submit your answer to check if your program is working the way it should.

Read more here: https://projecteuler.net/about

** This blog is for educational purposes. Please try to solve the problems yourself and then check the logic here if you can't work it out here.