[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2025-02-08 10:16:37 +00:00
parent fcf7918374
commit d1f4ea4676

View File

@ -1,4 +1,4 @@
def actual_power(a: int, b: int)-> int:
def actual_power(a: int, b: int) -> int:
"""
Function using divide and conquer to calculate a^b.
It only works for integer a,b.