Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 15, 2026
commit 382ee4435a6be23dfaafb79597f70e85971e5632
4 changes: 1 addition & 3 deletions maths/fibonacci_fast.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
"""


def _mat_mul(
mat_a: list[list[int]], mat_b: list[list[int]]
) -> list[list[int]]:
def _mat_mul(mat_a: list[list[int]], mat_b: list[list[int]]) -> list[list[int]]:
"""Multiply two 2x2 integer matrices.

>>> _mat_mul([[1, 1], [1, 0]], [[1, 0], [0, 1]])
Expand Down