hw3: remove debug prints

This commit is contained in:
2021-03-14 22:08:28 +03:00
parent 08ea1e085f
commit 288ed0d07b

View File

@@ -3,6 +3,7 @@
import random import random
import time import time
from functools import partial from functools import partial
import tkinter as tk import tkinter as tk
from tkinter import messagebox as mb from tkinter import messagebox as mb
@@ -88,7 +89,6 @@ class Application(tk.Frame):
def process_number_press(self, val): def process_number_press(self, val):
val_pos = get_val_pos(self.game_state, val) val_pos = get_val_pos(self.game_state, val)
empty_pos = get_val_pos(self.game_state, 0) empty_pos = get_val_pos(self.game_state, 0)
print("poses", val_pos, empty_pos)
delta = (empty_pos[0] - val_pos[0], empty_pos[1] - val_pos[1]) delta = (empty_pos[0] - val_pos[0], empty_pos[1] - val_pos[1])
if delta not in POSSIBLE_MOVES: if delta not in POSSIBLE_MOVES:
return return