Thanks a lot man for listening to our requests. You will go far
@ankitsingh6624 Жыл бұрын
4th time revise graph everytime respect increase for sir 📈📈
@codestorywithMIK Жыл бұрын
4th Time 🔥🔥🔥 Hats off. Thank you so much for watching 🙏🙏🙏
@arunsharma4792 Жыл бұрын
Ek no🔥
@codestorywithMIK Жыл бұрын
Thanks a lot Arun ❤️❤️
@gauravbanerjee2898 Жыл бұрын
5/40 done ✅ thanks a lot bhaiya🙌
@parasjain4-yearb.tech.mech44127 күн бұрын
Dhanyawad Bhai
@kashishkashyap6229 Жыл бұрын
great way of explaining 🔥 thanks alot
@codestorywithMIK Жыл бұрын
Thank you for watching 😇🙏
@tanujasharma12622 ай бұрын
you made it look easy, thanks
@wearevacationuncoverers Жыл бұрын
Top notch
@aatish5375 Жыл бұрын
Thanku Bhaiya...❤
@codestorywithMIK Жыл бұрын
❤️❤️❤️
@MohitSingh-pp4ed Жыл бұрын
Can you please share link to these notes you are making to help us understand ? Wonderful series of graph, enjoying graphs for the very first time. Thank you for the excellent content and hats off the way you explain everything.
@codestorywithMIK Жыл бұрын
Hi Mohit, first of all thank you so much for your kind words. Regarding notes , i have maintained then in my Github repo (link in the description) but currently don’t have written pdf notes. I might create one in future and share Thanks again ❤️❤️❤️
@MohitSingh-pp4ed Жыл бұрын
@@codestorywithMIK By notes I meant is the pdf of the ipad notes made on notes app which you are streaming in the video.
@codestorywithMIK Жыл бұрын
I see. I never made it. Will make it in a consolidated pdf and share soon
@MohitSingh-pp4ed Жыл бұрын
@@codestorywithMIK That would be really helpful. Looking forward to it. Thank you so v much again for creating this channel and everything. Can't express enough thanks. Keep creating more content. Loving all the videos.
@codestorywithMIK Жыл бұрын
Thanks a lot Mohit. I would also suggest you to maintain a Github repo where you store all these code. It helped me a lot in revision and will definitely help all of you. One important thing is that i will be on an emergency travelling streak for 3 weeks in February and will be back with more contents. Stay connected and it’s a promise, this channel will never disappoint.
@jagadeeshp116310 ай бұрын
Done✅
@nityabudhraja26606 ай бұрын
I never get it where to use BFS or DFS.IF I get to know that will be very helpful
@apurav3634 ай бұрын
🙏👍
@deepakdass471011 ай бұрын
Graph count = 5
@KaushikkrSarmaАй бұрын
same code python me TLE deta he , esa kyu ?
@oqant0424 Жыл бұрын
5/40 done [22.9.23]
@codestorywithMIK Жыл бұрын
This weekend coming another video in this playlist. Keep it up ❤️❤️❤️
@jagadeeshp116310 ай бұрын
from typing import List class Solution: #Function to detect cycle in an undirected graph. def bfs(self,source,adj,visited): q=[] q.append([source,-1]) visited[source]=True while(q): for i in range(len(q)): [t,p]=q.pop(0) for u in adj[t]: if visited[u]==True and u!=p: return True if u!=p: visited[u]=True q.append([u,t]) return False def isCycle(self, V: int, adj: List[List[int]]) -> bool: visited=[0 for i in range(V)] for i in range(V): if visited[i]==False: if self.bfs(i,adj,visited): return True return False