We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fba4edf commit 0403341Copy full SHA for 0403341
project_euler/problem_011/sol1.py
@@ -63,7 +63,7 @@ def largest_product(grid):
63
max_product = max(
64
vert_product, horz_product, lr_diag_product, rl_diag_product
65
)
66
- largetst = max(largest, max_product)
+ largest = max(largest, max_product)
67
68
return largest
69
0 commit comments