-
-
Notifications
You must be signed in to change notification settings - Fork 46.8k
Create sol5.py #425
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
Create sol5.py #425
Conversation
added a solve for the problem
@alpylmz follow PEP8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please change the PR name to a easily understandable title.
@alpylmz Line 3 is a Python syntax error. Could you please fix that and resubmit? |
Shouldn't this solution be in project euler folder with all other solutions? |
Does this solution actually solve the problem? |
No it doesn't. With the syntax error you mentioned fixed it still creates infinite loop and it doesn't follow pep8. Now I see. |
And will it solve the problem even if the syntax error is fixed? while a=<1000: -> while a<=1000: |
No it won't. Logic has to be changed. |
Should we delete this file? |
Yes. |
Yes, delete this file. File path, logic and standards - all incorrect. |
As discussed at TheAlgorithms#425 (comment) this file contains syntax, logic, style, and naming errors that are causing our LGTM build process to fail. @StephenGemin, @shuklalok, @vikaskyadav, @poyea, @mrWiecek your reviews please.
added a solve for the problem