Skip to content

Commit fd44b0a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 0e0f01c commit fd44b0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

divide_and_conquer/inversions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def _count_cross_inversions(p: list[int], q: list[int]) -> tuple[list[int], int]
118118
return r, num_inversion
119119

120120

121-
def main()-> None:
121+
def main() -> None:
122122
arr_1 = [10, 2, 1, 5, 5, 2, 11]
123123

124124
# this arr has 8 inversions:

0 commit comments

Comments
 (0)