Tagged Questions
2
votes
2answers
552 views
Six degrees of Kevin Bacon in Perl
First yes, this is a homework project for my Perl class. I am not looking for the answer (although that would be sweet). As I understand it I need to use a BFS and a regular expression to organize ...
-3
votes
1answer
144 views
help in executing the code
My code:
nodes = []
stack = util.Stack()
child = []
currNode = problem.getStartState()
stack.push(currNode)
while not stack.isEmpty():
nodes = ...