diff --git a/solutions/bronze/usaco-1276.mdx b/solutions/bronze/usaco-1276.mdx index 3972b2c591..e599e350a9 100644 --- a/solutions/bronze/usaco-1276.mdx +++ b/solutions/bronze/usaco-1276.mdx @@ -127,9 +127,7 @@ int main() { ```py cows = [] # List to store {s, t, c} for each cow air_conditioners = [] # List to store {a, b, p, m} for each air conditioner -min_cost = float( - "inf" -) # the minimum amount of money needed to keep all cows comfortable +min_cost = float("inf") # the minimum amount of money needed to keep all cows comfortable def update(): @@ -169,7 +167,7 @@ def update(): def search(i: int): - """Expand the subset, represented by 'uses', by choosing to (not) use the i-th air conditioner" + """Expand the subset, represented by 'uses', by choosing to (not) use the i-th air conditioner""" if i == M: update() else: