fixed formatting

This commit is contained in:
Jean-Francois Gilsdorf 2023-12-13 21:48:47 +01:00
parent 7f02586e94
commit 06821ea2c5

View File

@ -35,8 +35,6 @@ namespace AdventOfCode2023.Day7
.ThenBy(x => x.Cards[4]);
return hands.Select((hand, index) => hand.Bid * (index + 1)).Sum().ToString();
}
}
internal class Hand_Day2