diff --git a/README.md b/README.md index f7e1609..cf79f62 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Fabelous Math is a simple library designed to provide basic mathematical functio You can easily install `fabelous-math` using pip: ```sh -pip install https://gitea.fabelous.app/Fabel/fabelous-math.git +pip install git+https://gitea.fabelous.app/Fabel/fabelous-math.git ``` ## Usage @@ -25,41 +25,6 @@ print(f"Is {number} even? {is_even(number)}") print(f"Is {number} odd? {is_odd(number)}") ``` -## Functions - -### `is_even` - -Checks if a given number is even. - -- **Python:** - ```python - def is_even(number: int) -> bool: - pass - ``` - -- **C++:** - ```cpp - namespace simple_functions { - bool is_even(long long number); - } - ``` - -### `is_odd` - -Checks if a given number is odd. - -- **Python:** - ```python - def is_odd(number: int) -> bool: - pass - ``` - -- **C++:** - ```cpp - namespace simple_functions { - bool is_odd(long long number); - } - ``` ## Performance Comparison To understand the performance of `fabelous-math` functions, I conducted a series of tests comparing my methods with traditional modulo operations. Below are the results: