remove some opaque comments

This commit is contained in:
Rupus Reinefjord 2023-12-22 11:44:01 +01:00
parent fa73b26e7b
commit cb7599d546

View file

@ -19,8 +19,6 @@ func points(winning: seq[int]): int =
0
proc count(winning, cards: seq[int]): int =
# [4, 2, 2, 1, 0, 0]
# [1, 2, 4, 8, 14, 1]
result = 1
for _ in 1..winning[0]:
result += cards.count(winning[1..winning[0]])