This commit is contained in:
2025-03-03 20:42:31 +03:00
parent 67b708bdff
commit 9cda21ea29
4 changed files with 43 additions and 36 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ def Shuffle() -> List[Tuple[User, User]]:
pairs = []
if len(users) % 2 != 0:
pairs.append((users.pop(),))
pairs.append((users.pop(), None))
# Step 1: Match men with women by compatibility and age
for user in users: