We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78adb64 commit c79cb95Copy full SHA for c79cb95
divide_and_conquer/power.py
@@ -27,7 +27,7 @@ def actual_power(a: int, b: int):
27
return half * half
28
else:
29
return a * half * half
30
-
+
31
def power(a: int, b: int) -> float:
32
"""
33
:param a: The base (integer).
0 commit comments