Skip to content

Commit cf108ba

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

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: greedy_methods/fractional_cover_problem.py

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class Item:
1111
def not_really__eq__(self, other: object) -> bool:
1212
return self.weight == other.weight and self.value == other.value
1313

14+
1415
def fractional_cover(items: list[Item], capacity: int) -> float:
1516
"""
1617
Solve the Fractional Cover Problem.

0 commit comments

Comments
 (0)