Fixed typo: strenght -> strength

This commit is contained in:
Semen Zhydenko
2022-12-27 14:14:48 +01:00
parent 7dc4fba5cd
commit ebdbc0e3c0
+1 -1
View File
@@ -99,7 +99,7 @@ def ranked_pairs(ranks: List[List[int]]):
tallies = tallies - tallies.T
# print(tallies)
# note: the resulting tally matrix should be skew-symmetric
# order by strenght of victory (using tideman's original method, don't think it would make a difference for us)
# order by strength of victory (using tideman's original method, don't think it would make a difference for us)
sorted_majorities = []
for i in range(len(ranks[0])):
for j in range(len(ranks[i])):