Zaktualizuj 'program.py'

This commit is contained in:
Weronika Gorący 2020-05-07 20:22:48 +00:00
parent b8159fcfc7
commit 3d9b199687

View File

@ -108,7 +108,7 @@ class MainWindow:
self.mapForAStar[where[0]][where[1]] = 0
path = star.search([0, 2], where, self.mapForAStar, 1)
self.mapForAStar[where[0]][where[1]] = 1
value = path[cns][cwe]
value = path[0][2]
while True:
if cns>0 and path[cns-1][cwe]==(value+1):
cns=cns-1