yaworsw/euler-manager

View on GitHub
data/problems/28.yml

Summary

Maintainability
Test Coverage
---
:id: 28
:name: Number spiral diagonals
:url: https://projecteuler.net/problem=28
:content: "Starting with the number 1 and moving to the right in a clockwise direction
  a 5 by 5 spiral is formed as follows:\n\n**21** 22 23 24 **25**  \n20   **7**
   8   **9** 10  \n19  6   **1**  2 11  \n18   **5**
   4   **3** 12  \n**17** 16 15 14 **13**\n\nIt can be verified that the
  sum of the numbers on the diagonals is 101.\n\nWhat is the sum of the numbers on
  the diagonals in a 1001 by 1001 spiral formed in the same way?\n\n"