txlyre 3 жил өмнө
parent
commit
4e29d2eed4
1 өөрчлөгдсөн 3 нэмэгдсэн , 0 устгасан
  1. 3 0
      yafn/__main__.py

+ 3 - 0
yafn/__main__.py

@@ -150,6 +150,9 @@ def distance(graph, start, end):
   visited = []
   queue = [[start]]
 
+  if start == end:
+    return 0
+
   while queue:
     path = queue.pop(0)
     node = path[-1]