This commit is contained in:
Matteo Benedetto
2025-08-17 18:49:07 +02:00
parent a910c8f74a
commit 8a32aad877
13 changed files with 259 additions and 30 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ class Scoring:
for row in rows:
table.append(row.split(" - "))
table.sort(key=lambda x: int(x[1]), reverse=True)
return table
return table[:3]
def add_point(self, value):
self.points += value