remove semicolon from ia.py

This commit is contained in:
Pavel 2021-11-08 19:49:11 +01:00
parent ec19e4a218
commit cab94daf65
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ def convert(board):
return t
def hash(p):
return p[3] << 24 | p[2] << 16 | p[1] << 8 | p[0];
return p[3] << 24 | p[2] << 16 | p[1] << 8 | p[0]
moves = [GO_UP, GO_DOWN, GO_LEFT, GO_RIGHT]