Skip to content

Commit

Permalink
all code files updated
Browse files Browse the repository at this point in the history
  • Loading branch information
packt-pradeeps authored Jun 15, 2020
1 parent 2115ea2 commit 0f19820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Chapter03/Chapter_3_ALL_CODE.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@
"def dfs(aGraph, root): \n",
" stack = [root] \n",
" parents = {root: root} \n",
" path = list() \n",
" path = list \n",
" while stack: \n",
" print ('Stack is: %s' % stack) \n",
" vertex = stack.pop(-1) \n",
Expand Down

0 comments on commit 0f19820

Please sign in to comment.