-
-
Notifications
You must be signed in to change notification settings - Fork 46.2k
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
Project Euler 62 Solution #3029
Project Euler 62 Solution #3029
Conversation
I'm not sure why there's a second Travis build running. It's been going for over 20 minutes now. |
Pushing a new commit seems to have fixed the problem. |
Hi @dhruvmanila, it's been almost a week and my PRs haven't been reviewed yet. I know you're probably swamped with hundreds of open PRs right now, but please look at my solutions for problem 62 (here), 65, 70, and 206, and let me know if there are any issues I need to fix. Thank you :) |
Closing and re-opening the PR for Travis CI to rerun with a new configuration. |
You opened 4 PRs at a time when we eplicitly mentioned to open only one PR at a time. If you cannot follow that, then please don't expect us to review all your PRs at one go just because you think it's more important than others. |
Got it. I saw other PRs made after mine that got reviewed and merged sooner, so I was concerned about getting skipped over. I'll make the changes later tonight. |
…tional arg for solution()
@dhruvmanila Finished the changes. Thanks again for getting back to me! I will make similar changes to my other 3 PRs so they look like this one. |
Yes, that would make it easy for us to review. Thank you for doing that :) |
@dhruvmanila Answer test case removed. |
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.
Looks good! Thank you for your contribution!
* Add solution for Project Euler 62 * Add doctests and annotate function params and return values for get_digits() * Add extra newline between functions to fix flake8 errors * Add extra newlines between function names * Add missing return type for solution() * Remove parenthesis from if statement * Remove parentheses from while loop * Add to explanation and fix second Travis build * Compress get_digits(), add tests for solution(), add fstring and positional arg for solution() * Remove input param when calling solution() * Remove test case for the answer
* Add solution for Project Euler 62 * Add doctests and annotate function params and return values for get_digits() * Add extra newline between functions to fix flake8 errors * Add extra newlines between function names * Add missing return type for solution() * Remove parenthesis from if statement * Remove parentheses from while loop * Add to explanation and fix second Travis build * Compress get_digits(), add tests for solution(), add fstring and positional arg for solution() * Remove input param when calling solution() * Remove test case for the answer
Describe your change:
Adds a solution and explanation for Project Euler 62. Part of issue #2695.
Checklist:
Fixes: #{$ISSUE_NO}
.