Fix docstring for Euler problem 11, solution 1 (#3228)

Docstring must have been leftover from some FizzBuzz method.
Now it describes the actual code.
This commit is contained in:
Kasper Primdal Lauritzen 2020-10-12 16:14:45 +02:00 committed by GitHub
parent 7b60cea490
commit b6b025f25a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,7 +68,8 @@ def largest_product(grid):
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