How is this recursion properly working when it is iterated through [on hold]
- by Rakso Zrobin
Here is my code right now:
hasht= {"A":["B", "D", "E"],
"B":["C"],
"C":["D", "E"],
"D":["C", "E"],
"E":["B"]}
paths=[]
def recusive(start, finish, started=true):
if start==finish and !started:
return start
else:
for i in hasht[start]:
path= start+ recusive(i,finish,false)
…