After running 2to3

This commit is contained in:
Grant Sanderson
2018-08-09 17:56:05 -07:00
parent 06a65190e7
commit 858051a806
172 changed files with 2117 additions and 2221 deletions

View File

@ -15,8 +15,8 @@ def print_permutation(index_list):
"M", "N", "O", "P", "Q", "R",
"S", "T", "U", "V", "W", "X",
"Y", "Z"]
free_indices = range(n)
free_indices_p1 = range(1,n + 1)
free_indices = list(range(n))
free_indices_p1 = list(range(1,n + 1))
#print perm_list
for i in range(n):
findex = index_list[i] - 1