Skip to content

Commit cf4fbf2

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

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

maths/is_power_of_four.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Space Complexity: O(1)
66
"""
77

8+
89
def is_power_of_four(n: int) -> bool:
910
"""Return True if n is a power of four (n > 0).
1011
@@ -34,4 +35,5 @@ def is_power_of_four(n: int) -> bool:
3435

3536
if __name__ == "__main__":
3637
import doctest
38+
3739
doctest.testmod()

0 commit comments

Comments
 (0)