We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f70a70 commit 7c79887Copy full SHA for 7c79887
pgb/add.py
@@ -1,6 +1,6 @@
1
def add(a: int, b: int) -> int:
2
"""
3
- Adds two number
+ Adds two number.
4
5
Args:
6
a (int): First argument
pgb/mul.py
def mul(a: int, b: int) -> int:
- Multiplies two number
+ Multiplies two number.
pgb/pow.py
def pow(a: int, b: int) -> int:
- Power of two number
+ Power of two number.
pgb/sub.py
def sub(a: int, b: int) -> int:
- Subtracts two number
+ Subtracts two number.
0 commit comments