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 upFixed coding style problem 33 fixes: #2786 #2849
Conversation
| @@ -23,17 +23,17 @@ def isDigitCancelling(num, den): | |||
| return True | |||
|
|
|||
|
|
|||
| def solve(digit_len: int) -> str: | |||
| def solution(digit_len: int) -> str: | |||
dhruvmanila
Oct 6, 2020
Member
Please add the default value for the parameter digit_len such that when called without any arguments solution() returns the right answer to the solution.
Please add the default value for the parameter digit_len such that when called without any arguments solution() returns the right answer to the solution.


Describe your change:
Changed the function name to
solutionfor project euler problem 33.Checklist:
Fixes: #{$ISSUE_NO}.