mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 17:34:49 +08:00
Enable ruff RUF003 rule (#11376)
* Enable ruff RUF003 rule * Update pyproject.toml --------- Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
@ -26,7 +26,7 @@ def _fib(n: int) -> tuple[int, int]:
|
||||
if n == 0: # (F(0), F(1))
|
||||
return (0, 1)
|
||||
|
||||
# F(2n) = F(n)[2F(n+1) − F(n)]
|
||||
# F(2n) = F(n)[2F(n+1) - F(n)]
|
||||
# F(2n+1) = F(n+1)^2+F(n)^2
|
||||
a, b = _fib(n // 2)
|
||||
c = a * (b * 2 - a)
|
||||
|
Reference in New Issue
Block a user