Skip to content

Commit 0403341

Browse files
committed
Fix
1 parent fba4edf commit 0403341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: project_euler/problem_011/sol1.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def largest_product(grid):
6363
max_product = max(
6464
vert_product, horz_product, lr_diag_product, rl_diag_product
6565
)
66-
largetst = max(largest, max_product)
66+
largest = max(largest, max_product)
6767

6868
return largest
6969

0 commit comments

Comments
 (0)