From 7b60cea4907d05b4293cb94a53f2d795b59ee0a6 Mon Sep 17 00:00:00 2001 From: Kasper Primdal Lauritzen Date: Mon, 12 Oct 2020 13:28:46 +0200 Subject: [PATCH] Fix docstring for Euler problem 11, solution 2 (#3227) --- project_euler/problem_11/sol2.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project_euler/problem_11/sol2.py b/project_euler/problem_11/sol2.py index 1482fc7d3..839ca6717 100644 --- a/project_euler/problem_11/sol2.py +++ b/project_euler/problem_11/sol2.py @@ -28,7 +28,8 @@ import os def solution(): - """Returns the sum of all the multiples of 3 or 5 below n. + """Returns the greatest product of four adjacent numbers (horizontally, + vertically, or diagonally). >>> solution() 70600674