From 621a09f07446bbc7bd54d682dce1be512080ba3d Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 5 Oct 2024 13:45:05 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- matrix/diagonal_traversal.py | 1 - 1 file changed, 1 deletion(-) diff --git a/matrix/diagonal_traversal.py b/matrix/diagonal_traversal.py index 88bd28d39..2ed9f3d7c 100644 --- a/matrix/diagonal_traversal.py +++ b/matrix/diagonal_traversal.py @@ -53,7 +53,6 @@ def find_diagonal_order(mat: list[list[int]]) -> list[int]: row += 1 col -= 1 - return result