Skip to content

Commit 2b581f7

Browse files
authored
Update sol1.py
1 parent 2b6c4ff commit 2b581f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

project_euler/problem_34/sol1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
def sum_of_digit_factorial(n: int) -> int:
11-
"""
11+
"""
1212
Returns the sum of the digits in n
1313
>>> sum_of_digit_factorial(15)
1414
121
@@ -22,7 +22,7 @@ def sum_of_digit_factorial(n: int) -> int:
2222

2323
def compute() -> int:
2424
"""
25-
Returns the sum of all numbers whose
25+
Returns the sum of all numbers whose
2626
sum of the factorials of all digits
2727
add up to the number itself.
2828
>>> compute()

0 commit comments

Comments
 (0)