Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Sep 20, 2024
1 parent bbbe52e commit d99d965
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions solutions/beecrowd/2633/2633.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

for i in range(n):
if i > 0 and i < n:
print(" ", end="")
print(heapq.heappop(sorted_ingredients)[1], end="")
print(' ', end='')
print(heapq.heappop(sorted_ingredients)[1], end='')

print()

0 comments on commit d99d965

Please sign in to comment.