Skip to content

Commit 91d3381

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 5b757f1 commit 91d3381

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

maths/Addition_without_arithmetic.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Time Complexity: 1
55
"""
66

7+
78
def add(first: int, sec: int) -> int: # Create a function
89
"""
910
implementation of addition of integer
@@ -25,6 +26,7 @@ def add(first: int, sec: int) -> int: # Create a function
2526
sec = c << 1
2627
return first
2728

29+
2830
if __name__ == "__main__":
2931
import doctest
3032

0 commit comments

Comments
 (0)