mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
1bbb0092f3
* Add signum function * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Add typehints for functions * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update signum.py Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Christian Clauss <cclauss@me.com>
35 lines
550 B
Python
35 lines
550 B
Python
"""
|
|
Signum function -- https://en.wikipedia.org/wiki/Sign_function
|
|
"""
|
|
|
|
|
|
def signum(num: float) -> int:
|
|
"""
|
|
Applies signum function on the number
|
|
|
|
>>> signum(-10)
|
|
-1
|
|
>>> signum(10)
|
|
1
|
|
>>> signum(0)
|
|
0
|
|
"""
|
|
if num < 0:
|
|
return -1
|
|
return 1 if num else 0
|
|
|
|
|
|
def test_signum() -> None:
|
|
"""
|
|
Tests the signum function
|
|
"""
|
|
assert signum(5) == 1
|
|
assert signum(-5) == -1
|
|
assert signum(0) == 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print(signum(12))
|
|
print(signum(-12))
|
|
print(signum(0))
|