Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Python solution to Problems 11 & 19 #27

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Add Python solution to Problems 11 & 19 #27

wants to merge 2 commits into from

Conversation

mvforell
Copy link

@mvforell mvforell commented Oct 3, 2019

This fixes #5.

@mvforell mvforell changed the title Add Python solution to Problem 19 Add Python solution to Problems 11 & 19 Oct 3, 2019
temp_product = grid[i][j] * grid[i + 1][j - 1] * grid[i + 2][j - 2] * grid[i + 3][j - 3]
except:
pass
if temp_product > greatest_product:-
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A bug in the 56th line. Please fix this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Solve problem 19 on Project euler website
2 participants