Skip to content

Commit 7b27f18

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent cbd20bf commit 7b27f18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recursions/recursive_digit_sum.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
from __future__ import annotations
1616

17+
1718
def super_digit(n_str: str, repetitions: int) -> int:
1819
"""
1920
Computes the super digit of a number formed by concatenating n_str repetitions times.
@@ -56,4 +57,3 @@ def super_digit(n_str: str, repetitions: int) -> int:
5657
# Call the super_digit function and print the result
5758
result = super_digit(n_str, repetitions)
5859
print(result)
59-

0 commit comments

Comments
 (0)