Skip to content

Commit 27e44b8

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9e1d83c commit 27e44b8

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.
@@ -45,4 +47,4 @@ def is_spy_number(number: int) -> bool:
4547
if __name__ == "__main__":
4648
import doctest
4749

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

0 commit comments

Comments
 (0)