Skip to content

Commit 4ace637

Browse files
committed
commented unused imported modules and reformatted code
1 parent 8f3b880 commit 4ace637

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Eight_Puzzle_Solver/eight_puzzle.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import sys
1+
# import sys
22
from collections import deque
33
from copy import deepcopy
44
from queue import PriorityQueue
5-
import time
6-
from collections import Counter
5+
# import time
6+
# from collections import Counter
77

88
class Node:
99
def __init__(self,state,depth = 0,moves = None,optimizer=0):

0 commit comments

Comments
 (0)