Project Euler – Problem 28 Solution

Yan Cui

I help clients go faster for less using serverless technologies.

This article is brought to you by

The real-time data platform that empowers developers to build innovative products faster and more reliably than ever before.

Learn more

Problem

Starting with the number 1 and moving to the right in a clockwise direction a 5 by 5 spiral is formed as follows:

image

It can be verified that the sum of the numbers on the diagonals is 101.

What is the sum of the numbers on the diagonals in a 1001 by 1001 spiral formed in the same way?

Solution

let rec sumDiagonals n m total max =
    match n with
    | 1 -> sumDiagonals (n+1) m 1 1
    | _ when n > m -> total
    | _ when n % 2 = 0 -> sumDiagonals (n+1) m total max
    | _ ->
        let newValues = [1..4] |> List.map (fun x -> max + x * (n-1))
        let newMax = newValues |> List.max
        let newTotal = total + (newValues |> List.sum)
        sumDiagonals (n+1) m newTotal newMax

let answer = sumDiagonals 1 1001 0 0

As you’ve probably noticed already, there’s a pattern in the sequence 1, 3, 5, 7, 9, 13, 17, 21, 25, … generated by the spiral in the problem brief. As the dimension goes up by 2 at a time, all odd numbers, 4 new numbers are added to the sequence:

Dimension (d) Numbers on the edge of the square Max number from last dimension
1 1
3 3, 5, 7, 9 1
5 13, 17, 21, 25 9

Looking at the above table, it quickly becomes clear that the new numbers that are added to the diagonals when you expand the dimension by 2 can be calculated as:

max number from last dimension + (d-1) * i (where i is a number from 1 to 4)

My solution simply wraps this logic in a recursive function whilst keeping a running total of all the numbers that have been generated.

Whenever you’re ready, here are 4 ways I can help you:

  1. Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game. This is your one-stop shop for quickly levelling up your serverless skills.
  2. Do you want to know how to test serverless architectures with a fast dev & test loop? Check out my latest course, Testing Serverless Architectures and learn the smart way to test serverless.
  3. I help clients launch product ideas, improve their development processes and upskill their teams. If you’d like to work together, then let’s get in touch.
  4. Join my community on Discord, ask questions, and join the discussion on all things AWS and Serverless.

Leave a Comment

Your email address will not be published. Required fields are marked *