Skip to content

Commit c79cb95

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

divide_and_conquer/power.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def actual_power(a: int, b: int):
2727
return half * half
2828
else:
2929
return a * half * half
30-
30+
3131
def power(a: int, b: int) -> float:
3232
"""
3333
:param a: The base (integer).

0 commit comments

Comments
 (0)