-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProblem 11.py
More file actions
21 lines (19 loc) · 754 Bytes
/
Problem 11.py
File metadata and controls
21 lines (19 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#-------------------------------------------------------------------------------
# Name: Problem 11
# Purpose: What is the greatest product of four adjacent numbers in any
# direction (up, down, left, right, or diagonally) in the 2020 grid?
#
# Author: Sebastián Torrente
#
# Created: 13/11/2012
# Comment: Interesting. Given that I'm using Python 3.2 I don't have the
# the useful matrix from Numpy at hand.
#-------------------------------------------------------------------------------
def readmatrix(file):
"""
Take a file with a matrix of numbers and return a nested list with the elements.
"""
pass
if __name__ == '__main__':
data = open(r'Data\data11.txt')
print(data)