remove trash print

This commit is contained in:
starnakin 2023-12-04 10:24:32 +01:00
parent 9057c1603a
commit 5db1f6a717

View File

@ -21,7 +21,6 @@ for card_id, line in enumerate(lines):
for next_card_id in range(card_id + 1, card_id + bozo_value + 1):
next_cards_coef = cards_coef.get(next_card_id, 0)
cards_coef.update({next_card_id: next_cards_coef + current_card_coef})
print(cards_coef)
for card_id, coef in cards_coef.items():
value += coef