Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upProject Euler Problem 80 #2885
Project Euler Problem 80 #2885
Conversation
| @@ -0,0 +1,31 @@ | |||
| """ | |||
| Euler Problem : 80 | |||
dhruvmanila
Oct 6, 2020
Member
- Please remove the indentation, it's not needed for module level docstring
- Simplify by removing @ symbol
| answer += int(str(sqrt_number)[0]) | ||
| sqrt_number = str(sqrt_number)[2:101] | ||
| answer += sum([int(x) for x in sqrt_number]) | ||
| return answer |
dhruvmanila
Oct 6, 2020
Member
I think your return statement is at wrong indentation level which is resulting in the wrong answer: https://travis-ci.com/github/TheAlgorithms/Python/jobs/395341755#L318-L321
|
|
||
| def solution() -> int: | ||
| answer = 0 | ||
| dot100 = decimal.Context(prec=105) |
| import decimal | ||
|
|
||
|
|
||
| def solution() -> int: |
dhruvmanila
Oct 6, 2020
Member
Please include doctest and function docstring explaining in brief what this function does.


Describe your change:
Checklist:
Fixes: #{$ISSUE_NO}.