I am so glad to find your channel. Thank you so much for uploading this video. Your explanation is excellent. Please keep posting more algorithm videos.
Please try this once Mam , in this argument of the function will be node from which we want to start , def traversal(a): #we will have to mention the node where we want to start global node_count if a not in nodes: print("Node not present") return l1=graph[a] if a not in a2: a2.append(a)
if len(a2)==node_count: #base condition return else: for i in l1: if i not in a2: stack.put(i) a=stack.get()#backtracking traversal(a) return a2
I am so glad to find your channel. Thank you so much for uploading this video. Your explanation is excellent. Please keep posting more algorithm videos.
Thank you mam💪, also complete the series..
Pleasure 😊
Thank you mam😊I am totally dependent on your videos on my upcoming placements
I will try my level best 😊
Make a video seperatey on weighted graph
It is so well explained please make a video on BFS, dls, uniform cost search, and greedy best-first search
Please try this once Mam , in this argument of the function will be node from which we want to start ,
def traversal(a): #we will have to mention the node where we want to start
global node_count
if a not in nodes:
print("Node not present")
return
l1=graph[a]
if a not in a2:
a2.append(a)
if len(a2)==node_count: #base condition
return
else:
for i in l1:
if i not in a2:
stack.put(i)
a=stack.get()#backtracking
traversal(a)
return a2
Do video for difference between library,package,module,framework...
Will try 😊
Thanks mam ...Compete algorithm basic to advance with implementation in Python
Pleasure 😊
Simply the best. Please make video for bfs too
Thank you 😊
One Day I will 😅😊😮🎉🎉❤
plz make the playlist on dynamic programming 🙏
Aditya Verma... Search his videos.. No one can beat his videos on DP.
Maam can we have tutorial for BFS?
Soon 😊
tysm dear!!
😊👍thank you
Pleasure 😊
Mam, can't we traverse all the elements in the disconnected graph using this method
how to add goal node and goal test?
Iam getting this error -->
for i in graph[node]:
TypeError: list indices must be integers or slices, not str
TypeError: unhashable type: 'list' i am getting this error
Yes mam