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:
parent
b937349deb
commit
c9baf9585a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue