1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fix integer division

This commit is contained in:
Roderik Ploszek 2018-03-03 16:50:45 +01:00
parent b937349deb
commit c9baf9585a

View file

@ -328,7 +328,7 @@ class AbstractMahjonggGame(Game):
t = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
for i in range(1, len(L), 3):
n = t.find(L[i])
level, height = n / 7, n % 7 + 1
level, height = n // 7, n % 7 + 1
tx = t.find(L[i+1])
ty = t.find(L[i+2])
assert n >= 0 and tx >= 0 and ty >= 0