Skip to content

Commit faeb9ca

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

greedy_methods/rearranging_fruits.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def min_cost(basket1: List[int], basket2: List[int]) -> int:
3333
([4, 2, 2, 2], [1, 4, 1, 2]), # Expected: 1
3434
([1, 2, 3, 4], [2, 3, 4, 1]), # Expected: 0
3535
([1, 1, 1, 1], [1, 1, 1, 1]), # Expected: 0
36-
([1, 2, 2], [2, 1, 1]), # Expected: -1
36+
([1, 2, 2], [2, 1, 1]), # Expected: -1
3737
([5, 3, 3, 2], [2, 5, 5, 3]), # Expected: -1
3838
]
3939

0 commit comments

Comments
 (0)