diff --git a/1ano/fp/aula05/allMatches.py b/1ano/fp/aula05/allMatches.py index c77752f..4a030e6 100755 --- a/1ano/fp/aula05/allMatches.py +++ b/1ano/fp/aula05/allMatches.py @@ -3,13 +3,15 @@ def main(): print(matches) print(len(matches)) + def allMatches(teamList): matchList = [] + for team1 in teamList: for team2 in teamList: - if team1 == team2: - continue - matchList.append((team1, team2)) + if team1 != team2: + matchList.append((team1, team2)) + return matchList if __name__ == "__main__":