mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
23 lines
483 B
Python
23 lines
483 B
Python
"""
|
|
https://en.wikipedia.org/wiki/Floor_and_ceiling_functions
|
|
"""
|
|
|
|
|
|
def floor(x: float) -> int:
|
|
"""
|
|
Return the floor of x as an Integral.
|
|
:param x: the number
|
|
:return: the largest integer <= x.
|
|
>>> import math
|
|
>>> all(floor(n) == math.floor(n) for n
|
|
... in (1, -1, 0, -0, 1.1, -1.1, 1.0, -1.0, 1_000_000_000))
|
|
True
|
|
"""
|
|
return int(x) if x - int(x) >= 0 else int(x) - 1
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import doctest
|
|
|
|
doctest.testmod()
|