02/01: Problem 2

Category: General
Posted by: James
The Fibonacci sequence has been shown to match patterns found in natures, such as the spiral of a shell, and the arrangement seeds in a sunflower.
Leicester Botanical Gardens - Fibonacci Tribute
Leicester Botanical Gardens - Fibonacci Garden

Pretty straight forward once you've generated the sequence, check for even terms by mod(2) == 0

» Read More

01/01: Problem 1

Category: General
Posted by: James
Very straight forward, using modulus to check if each integer in the range 1..1000 is a multiple of 3 or 5.

» Read More

01/01: Introduction

Category: General
Posted by: James
This blog is my place to share my thoughts and solutions on the problems set on the Project Euler website. A site dedicated to setting challenging mathematical / programming problems that lead the participants to extend their knowledge and exercise the little grey cells as Poirot would say.

I will not publish the answers to the problems, but I will publish behind cuts the source-code I've used and my thoughts on the questions.