Skip to content

Commit 9870bd3

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

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

maths/special_numbers/spy_number.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
Examples of Spy Numbers: 22,123,1124,...
77
https://www.scribd.com/document/895653665/Interesting-Number-Programs
88
"""
9+
10+
911
def is_spy_number(number: int) -> bool:
1012
"""
1113
This functions takes an integer number as input.
@@ -43,4 +45,4 @@ def is_spy_number(number: int) -> bool:
4345
if __name__ == "__main__":
4446
import doctest
4547

46-
doctest.testmod()
48+
doctest.testmod()

0 commit comments

Comments
 (0)