-
Notifications
You must be signed in to change notification settings - Fork 0
/
problem028.py
37 lines (28 loc) · 1.11 KB
/
problem028.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Project Euler
# Problem 28
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
###########################################
### IMPORTS ###
###########################################
###########################################
### GLOBALS ###
###########################################
###########################################
### FUNCTION DEFS ###
###########################################
#=============================================================================#
# Sum up diagonals for an n x n spiral of numbers
def sum_diagonals(n):
total = 1
counter = 1
for interval in range(2, n, 2):
for j in range(4):
counter += interval
total += counter
return total
###########################################
### MAIN FUNCTION ###
###########################################
print('Sum of diagonals is: %d' % sum_diagonals(1001))