No video

G-54. Strongly Connected Components - Kosaraju's Algorithm

  Рет қаралды 117,847

take U forward

take U forward

Жыл бұрын

GfG-Problem Link: bit.ly/3R6LzID
C++/Java/Codes and Notes Link: takeuforward.org/graph/strong...
DP Series: • Striver's Dynamic Prog...
SDE Sheet: takeuforward.org/interviews/s...
Check out our Website for curated resources:
Our Second Channel: / @striver_79
In case you are thinking to buy courses, please check below:
Code "takeuforward" for 15% off at GFG: practice.geeksforgeeks.org/co...
Code "takeuforward" for 20% off on sys-design: get.interviewready.io?_aff=takeuforward
Crypto, I use the Wazirx app: wazirx.com/invite/xexnpc4u
Take 750 rs free Amazon Stock from me: indmoney.onelink.me/RmHC/idje...
Earn 100 rs by making a Grow Account for investing: app.groww.in/v3cO/8hu879t0
Linkedin/Instagram/Telegram: linktr.ee/takeUforward
---------------------------------------------------------------------------------------------------------------------------

Пікірлер: 190
@adithyabhat4770
@adithyabhat4770 9 ай бұрын
Your videos and the SDE sheet are helping me so much to brush up the DSA concepts and learn the ones I ignored in college. A BIG THANK YOU!!
@cinime
@cinime Жыл бұрын
Understood! Super excellent explanation as always, thank you very much!!
@kushagrasrivastava1443
@kushagrasrivastava1443 Жыл бұрын
I thought I was done with graphs 😅
@SomeshCodes
@SomeshCodes 5 ай бұрын
Literally me too...😅
@andreasleonidou3620
@andreasleonidou3620 Жыл бұрын
Excellent tutorial and really helpful, thanks!!
@muskanchaurasia1532
@muskanchaurasia1532 9 ай бұрын
Just amazing. Great Explanation.
@ShreyaLanka-1912
@ShreyaLanka-1912 13 күн бұрын
Understood!! Thank you for this amazing explanation.
@adebisisheriff159
@adebisisheriff159 6 ай бұрын
Honestly, this playlist deserves Millions views and comments..... Thanks for all you do Striver!!!
@kritikarawat2180
@kritikarawat2180 Жыл бұрын
Man, amazing explaination. Hats off to you buddy
@KaushalDhruw
@KaushalDhruw 9 ай бұрын
Finally understood kosaraju algo. Thank you striver.
@user-oh9qm7pe8h
@user-oh9qm7pe8h Жыл бұрын
The above code gave me `TLE` so, with few minor changes it will work for you. To optimize the given code, you can make a few changes to improve its efficiency: 1. Pass the `adj` vector as a reference to the `dfs` function: Currently, the `adj` vector is passed by value, which creates a copy of the vector in each recursive call. Instead, pass it by reference to avoid unnecessary copies. 2. Use a vector of vectors (`adjT`) instead of an array of vectors for the transpose graph: Declaring `vector adjT[V]` as a variable-length array may cause a stack overflow for large values of `V`. Instead, use a vector of vectors to represent the transpose graph (`adjT`). 3. Reserve memory for the transpose graph vectors: Before pushing elements into `adjT`, reserve memory for each vector based on the size of the corresponding adjacency list in the original graph. This avoids frequent reallocations and improves performance. 4. Use vectors instead of stacks: Instead of using a stack to store the finish times of the nodes in the first DFS, you can use a vector and append nodes at the end. This eliminates the need for reversing the stack later on. Here's the optimized code with these changes: Code : class Solution { private: void dfs(int node, vector& adj, vector& vis, vector& finishOrder) { vis[node] = 1; for (int it : adj[node]) { if (!vis[it]) { dfs(it, adj, vis, finishOrder); } } finishOrder.push_back(node); } void dfs2(int node, vector& adj, vector& vis) { vis[node] = 1; for (int it : adj[node]) { if (!vis[it]) { dfs2(it, adj, vis); } } } public: // Function to find the number of strongly connected components in the graph. int kosaraju(int V, vector& adj) { vector vis(V, 0); vector finishOrder; for (int i = 0; i < V; i++) { if (!vis[i]) { dfs(i, adj, vis, finishOrder); } } // Creating the transpose graph (adjT) vector adjT(V); for (int i = 0; i < V; i++) { vis[i] = 0; for (int it : adj[i]) { adjT[it].push_back(i); } } // Last DFS using the finish order int scc = 0; for (int i = V - 1; i >= 0; i--) { int node = finishOrder[i]; if (!vis[node]) { scc++; dfs2(node, adjT, vis); } } return scc; } }; These optimizations should improve the efficiency of the code.
@HanumaVamsi2001
@HanumaVamsi2001 11 ай бұрын
Thanks a lot man!!
@muditkhanna8164
@muditkhanna8164 11 ай бұрын
yeah that improves the code a lot!
@khubanzehra7632
@khubanzehra7632 4 ай бұрын
Thank you so much
@veekykumar4211
@veekykumar4211 Жыл бұрын
great work sir i just watch ur few video and ur content is awesome
@Mr_Cat_11
@Mr_Cat_11 Жыл бұрын
Long time no see sir 😊 Thank you for posting 🥰🔥💖
@bhavikpunmiya9641
@bhavikpunmiya9641 Жыл бұрын
Thanks for Explaining this concept :) really liked your explaination
@Emperor723
@Emperor723 2 ай бұрын
mazaaaaaaa aaaaaaaagyaaaaaaaaaaa this is first time i have come across any of your videos der aaye par durust aaye.... let me subscribe!
@rohinianekar61
@rohinianekar61 Жыл бұрын
understood, nice explanation
@AmanKumar-wd2mq
@AmanKumar-wd2mq Жыл бұрын
You explain so well ❤❤
@dishant930
@dishant930 Жыл бұрын
I think after seeing the video if you read the striver sheet explanation for the same question it will give you more insight since it is really well written. I really liked it!
@siddharth.chandani
@siddharth.chandani 9 ай бұрын
Can you provide me link of that..
@nanireddy3606
@nanireddy3606 5 ай бұрын
It is in the description
@stith_pragya
@stith_pragya 7 ай бұрын
Thank You So Much for this wonderful video..............🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻
@sahilbheke4083
@sahilbheke4083 Жыл бұрын
You are a very good teacher apse sikhna easy lagta hai
@amitp277
@amitp277 Жыл бұрын
Awesome work 👏
@augustinradjou3909
@augustinradjou3909 5 ай бұрын
Going to end the graph..❤ understood
@krishnavyaskondle5707
@krishnavyaskondle5707 Жыл бұрын
Thanks for Explaining the logic
@chandrachurmukherjeejucse5816
@chandrachurmukherjeejucse5816 10 ай бұрын
And here comes the real OG Striver.❤
@249abhi
@249abhi 10 ай бұрын
awesome explanation!
@devanshubilthare5277
@devanshubilthare5277 8 ай бұрын
Amazing content🔥
@sauravchandra10
@sauravchandra10 Жыл бұрын
Understood, thanks!
@rahulsangvikar7973
@rahulsangvikar7973 3 ай бұрын
Just realised one thing. You can avoid reversing the graph if you were to put the time in a queue instead of a stack.
@reee896
@reee896 3 ай бұрын
No you need stack cause if you use Queue it will keep going on to next SSC using the visited araay
@paruldamahe7969
@paruldamahe7969 5 ай бұрын
amazing content!
@sukhpreetsingh5200
@sukhpreetsingh5200 Жыл бұрын
Awesome thanks a lot
@mathematics7746
@mathematics7746 Жыл бұрын
awsm explanation thank u so much
@ritulraj6119
@ritulraj6119 Жыл бұрын
🔥🔥🔥🔥 Explanation
@parshchoradia9909
@parshchoradia9909 Жыл бұрын
Understood Sir!
@UECAshutoshKumar
@UECAshutoshKumar 7 ай бұрын
Thank you sir 🙏
@visheshagrawal8676
@visheshagrawal8676 Жыл бұрын
amazing content
@mohitsingh13
@mohitsingh13 16 күн бұрын
Understood ❤
@eswartharun3394
@eswartharun3394 Жыл бұрын
This is much intutive than the previous video on kosaraju(other graph playlist)
@takeUforward
@takeUforward Жыл бұрын
Yes I read the comments, and then made this one.
@dhirendrasingh6071
@dhirendrasingh6071 Жыл бұрын
@@takeUforward you have changed the lives of so many students, you have blessings of many. ♥️
@tanmaypal2003
@tanmaypal2003 Жыл бұрын
​@@takeUforward when we sort all the edges according to finishing time and store it in stack like this 0,1,2,3,4,5,6,7 , so instead of storing in stack can we use queue and then when we pop out elements from queue we start DFS from 7 instead of 0 and 7 is not connected to anyone so we found 1st SCC then we pop 6 and do DFS and found 2nd SCC then we pop 3 and do DFS and got 3rd SCC and so on. In this approach we don't need to reverse the graph. Can we do like this?
@vishalsinghrajpurohit6037
@vishalsinghrajpurohit6037 Жыл бұрын
@@tanmaypal2003 Nice observation. I think this should work fine.
@theSoberSobber
@theSoberSobber Жыл бұрын
@@tanmaypal2003 yes
@GANESHSINGH-uc1gk
@GANESHSINGH-uc1gk Жыл бұрын
crystal clear
@oracle_ae
@oracle_ae Жыл бұрын
Thanks buddy
@divyareddy7622
@divyareddy7622 Жыл бұрын
thank you very muchhh! You've literally changed so many lives ✌️
@-VLaharika
@-VLaharika Жыл бұрын
Understood 👍
@herculean6748
@herculean6748 Жыл бұрын
Thanks🙌
@nitinkumar5974
@nitinkumar5974 2 ай бұрын
thanks for the video
@suryakiran2970
@suryakiran2970 Жыл бұрын
Understood❤
@user-pr2ju2zf4q
@user-pr2ju2zf4q Жыл бұрын
hey striver can we do bfs to sort the graph according to their finishing time ? is it possible ?
@divyatejaswinivengada6368
@divyatejaswinivengada6368 8 ай бұрын
Understooddd!!
@Kupo3.0
@Kupo3.0 Жыл бұрын
Understood!
@afraztanvir973
@afraztanvir973 11 ай бұрын
Is there any relation in this algo and topo sort as we get reverse topo from stack
@adamyasharma_0135
@adamyasharma_0135 6 ай бұрын
amazing..
@wilhelmrudolphfittig3577
@wilhelmrudolphfittig3577 Ай бұрын
maza aaala re ala striver aala
@Parthj426
@Parthj426 10 күн бұрын
Understood after a little bit of effort.
@piyushacharya7696
@piyushacharya7696 Жыл бұрын
reach++ Loved it
@dumpster-jackson
@dumpster-jackson 3 ай бұрын
Understood!!
@evilpollination1916
@evilpollination1916 2 ай бұрын
Understood.
@mraryanrajawat9693
@mraryanrajawat9693 Жыл бұрын
class Solution { private: void dfs(int node,vectoradj[],vector&vis,stack&st) // dfs for adj { vis[node]=1; for(auto it:adj[node]) { if(vis[it]==0) { dfs(it,adj,vis,st); } } st.push(node); } void dfs2(int node,vectoradjT[],vector&vis) // dfs for adjT { vis[node]=1; for(auto it:adjT[node]) { if(vis[it]==0) { dfs2(it,adjT,vis); } } } public: //Function to find number of strongly connected components in the graph. int kosaraju(int V, vector adj[]) { vectorvis(V,0); stackst; vector adjT[V]; // adj list after reversing edges for(int i=0;i
@discuss1
@discuss1 4 ай бұрын
How do I pick the starting node for sorting. In the above example if we would have started sorting from Node 3, I would have never reached 0, 1, 2. So how to calculate this increasing time for all nodes efficiently.
@ms-ej4gd
@ms-ej4gd Жыл бұрын
Big fan of your work striver
@h6_wingers
@h6_wingers Жыл бұрын
mast padha dia bahiya
@nisanduathsara5242
@nisanduathsara5242 4 ай бұрын
understooood
@rishabhjain6272
@rishabhjain6272 2 ай бұрын
the first step is same as topo sort using dfs technique, will not work with bfs (khann's algo) due to directed cyclic graphs.but if you apply topo sort using dfs in directed cyclic graphs ,it will work.
@PalashAgrawalECE
@PalashAgrawalECE Жыл бұрын
19:55 Why did you mention to write as private function. Is there any advantage of it over public. As I tested in run time and got public working faster than private. Also from outer source noone is calling that dfs function. So kindly elaborate please
@manojnavinjamuri5867
@manojnavinjamuri5867 Жыл бұрын
understood
@abhinavbhardwaj3372
@abhinavbhardwaj3372 11 ай бұрын
understood sir
@space_ace7710
@space_ace7710 Жыл бұрын
GFG compiler giving TLE, don't know why?? :(
@LearnerForever123
@LearnerForever123 10 ай бұрын
Understood
@iKnowThatSong
@iKnowThatSong 8 ай бұрын
Instate on transposing the graph, can't we just start from the last node? someone please explain....
@ManishKumar-zm9rj
@ManishKumar-zm9rj Жыл бұрын
We can use the same dfs again by passing a dummy stack: public void dfs(ArrayList adj, int[] vis, Stack st, int node){ vis[node] = 1; for(int it : adj.get(node)){ if(vis[it] == 0){ dfs(adj, vis, st, it); } } st.push(node); } //Function to find number of strongly connected components in the graph. public int kosaraju(int V, ArrayList adj) { int[] vis = new int[V]; Stack st = new Stack(); for(int i = 0; i < V; i++){ if(vis[i] == 0){ dfs(adj, vis, st, i); } } ArrayList adjT = new ArrayList(); for(int i = 0; i < V; i++) adjT.add(new ArrayList()); for(int i = 0; i < V; i++){ vis[i] = 0; for(int it : adj.get(i)){ // previously: i -> it // Now make it: i i adjT.get(it).add(i); } } int scc = 0; while(!st.isEmpty()){ int node = st.pop(); if(vis[node] == 0){ scc++; dfs(adjT, vis, new Stack(), node); } } return scc; }
@AryanMathur-gh6df
@AryanMathur-gh6df 9 ай бұрын
UNDERSTOOD
@anonymous-ws2ij
@anonymous-ws2ij Жыл бұрын
Hey Striver.. I had a question.. If we store the nodes according to their finishing time in a queue and rather than reversing all the nodes can't we simply do tranversal from the nodes in the queue in the similar fashion as you did.
@mayankgarg8103
@mayankgarg8103 Жыл бұрын
at 13:00 while traversing at scc1 from the node 0 using dfs you have taken the edges in the already present way(or say initial way) but since we have reversed the edges it should move in another way and you are also using the fact of of the edges being reversed at 13:05 when you are trying to access 3 from the dfs(2) you have said that . Then again same thing when doing same thing for dfs(3) we are not using the fact that edges are reversed. Can anyone here clear my doubt that where I am understanding it wrong?
@iamnoob7593
@iamnoob7593 8 ай бұрын
I get ur point , Striver used scc1->scc2->scc3->scc4 , Iniital config something like scc1scc3->scc4 can be used for better understanding
@UjjawalPathak-qy3uj
@UjjawalPathak-qy3uj Ай бұрын
HEY STRIVER, We can also reduce the time and steps if first getting there there finishing time and store in a queue rather then stack so because of FIFO we know first element to finish so we don't need to reverse the graph either we can directly go through the finishing elements which are already reverse with respect to graph it will reduce steps and clean code too. correct me if I m wrong
@KratosProton
@KratosProton Жыл бұрын
great
@udaypratapsingh8923
@udaypratapsingh8923 Жыл бұрын
understood 🥶
@p38_amankuldeep75
@p38_amankuldeep75 Жыл бұрын
understood💛💙💛
@sathvikmalgikar2842
@sathvikmalgikar2842 5 ай бұрын
guys just in case any one wondering why that stack of dfs calls was required that is only if u r solving for the second case of actually printing the components and not just finding number of components. like based on the stack trace u can make a note of elements while popping and put them into groups and print
@vishalcheeti8374
@vishalcheeti8374 22 күн бұрын
without using stack, how to do solve the first case of finding no. of compo? I mean to find no. of components also we need it in sorted way right?
@durgeshjadhav01
@durgeshjadhav01 Ай бұрын
nice
@muditkhanna8164
@muditkhanna8164 11 ай бұрын
please make videos on Eulerian paths also.
@pavanrai6196
@pavanrai6196 Жыл бұрын
Can't we use queue and then not reversing the edges and just count no of scc of back, but it's not working idk
@DheerajDivaker
@DheerajDivaker Жыл бұрын
edges ko reverse karne se SCCs separate ho rahe hai..
@dhanashreegodase4445
@dhanashreegodase4445 8 ай бұрын
ultimate
@dhruvn6522
@dhruvn6522 11 ай бұрын
Sir is sorting edges according to finishing time same as topological sort?
@discuss1
@discuss1 4 ай бұрын
Will topological sort work in cyclic graphs?
@mr.dependable4885
@mr.dependable4885 Жыл бұрын
Why is it important to reverse the edges, can't we just start the dfs in reverse order ? Like in the example start from 7 can any1 please explain
@arpitrajput6424
@arpitrajput6424 Жыл бұрын
we can't .try dryrun on 1st example , suppose u created vector which store the timing then timing will be {1 2 4 3 0} if you try dfs accoording to this you still cannot find scc.
@shivamsangwan7268
@shivamsangwan7268 Жыл бұрын
Yes, you can do that. But, this video is about Kosaraju's algorithm, which is implemented this way.
@jaishriharivishnu
@jaishriharivishnu Ай бұрын
Note: we can't say this as a Topological sort(as topological sort using DFS will get you stuck in Loop i.e cycle), but its a bit different. Its topological Sort for the SCC.
@tanmaybro3812
@tanmaybro3812 Ай бұрын
Isn't the first step same as topological sort?
@danushbasanaboyina1306
@danushbasanaboyina1306 Ай бұрын
In the first step.sorting all the edges ...looks like topological sorting..... Is it the same I am thinking....
@sahiljaiswal9270
@sahiljaiswal9270 11 ай бұрын
I am confused about the first step of arranging nodes on their finishing times. I thought that instead just doing normal DFS on reversed graph skipping the first step might also work but it doesnt, Can anyone explain this with an example
@harshitpant07
@harshitpant07 9 ай бұрын
if you reversed the graph and then perform the dfs how will you be able to reach form[0,1,2] --> [3] so to tackle this we store them in a stack to remember their order form start to finish .
@abcsumits
@abcsumits Жыл бұрын
sorting according to finish time can be done using toposort:)
@deviprasad_bal
@deviprasad_bal Жыл бұрын
that is toposort only. Toposort can be done using stack and that's what it is here.
@DheerajDivaker
@DheerajDivaker Жыл бұрын
@abcsumit Toposort banega hi nahi, wo sirf DAG mein work karta hai.
@DheerajDivaker
@DheerajDivaker Жыл бұрын
@@deviprasad_bal Toposort banega hi nahi, wo sirf DAG mein work karta hai.
@Anonymous_Coder
@Anonymous_Coder Жыл бұрын
@@DheerajDivaker Yes you are right but here since graph can be cyclic as well as acyclic , so incase of CYCLIC one edge which is causing cycle is not stored , like 1->2->3->1 , is only stored as [ 1, 2 ,3 ] . So ultimately we should not call it as a toposort ,but implementation is exactly same.
@DheerajDivaker
@DheerajDivaker Жыл бұрын
@@Anonymous_Coder yes absolutely correct.
@Rajat_maurya
@Rajat_maurya Жыл бұрын
why we need to sort, why can't we simply use ? for(int i=0;i
@jahanvichaudhary81
@jahanvichaudhary81 Жыл бұрын
same question
@rahulsangvikar7973
@rahulsangvikar7973 3 ай бұрын
Sorting makes you sure that you process those nodes first which lie at the end of a directed path. If you apply it randomly, you might start dfs from the start node or any node in the middle and will visit the nodes that are not a part of the SCC as well.
@ayushman_sr
@ayushman_sr 7 ай бұрын
thought process is very tricky
@adityavaste8963
@adityavaste8963 Жыл бұрын
Can we skip the step 1, and just reverse all the edges ? Because after reversing edges, components will be logically separated and we can run DFS on it separately, and can find the nodes in each component. Please can anyone guide me on this ?
@adityavaste8963
@adityavaste8963 Жыл бұрын
Ohh, got it. It's for the efficiency
@Jinxed192
@Jinxed192 Жыл бұрын
for eg, in the same example as striver's, if you reverse the edge between 2 & 3, with your process, when the graph is reversed, the dfs(0) has 3 as well in it, this is the loop hole. Whereas, in the algo, when we do dfs first and calculate finishing times, we get 3 at the top of the stack, so now we can make different dfs calls for each scc. Hope you understand. Have a great day!
@adityavaste8963
@adityavaste8963 Жыл бұрын
​@@Jinxed192 Thanks for explaination. That means we must know from where to start, to void futher conflicts.
@sharathkumar8338
@sharathkumar8338 Жыл бұрын
Understood brother. Could you please upload videos on sliding window and 2 pointers?? I saw most amazon OA will be based on that only.
@saitejadamaraju5408
@saitejadamaraju5408 Жыл бұрын
Already there in the channel bro
@083_h_nitishkumarjha3
@083_h_nitishkumarjha3 Жыл бұрын
can't we just use visited array to count the scc in reversed graph , similar to counting different components
@DheerajDivaker
@DheerajDivaker Жыл бұрын
starting vertex kon hoga, fir ye kaise pta lagaoge? jiska finishing time sabse jyada hoga wahi starting point hoga aur iske liye hume stack mein Finishing time ke according vertices rakhne padenge.
@sandeepmourya8922
@sandeepmourya8922 Жыл бұрын
isn't the timestamp same as toposort ? or there is any difference
@DheerajDivaker
@DheerajDivaker Жыл бұрын
Toposort possible in DAG only
@sahilbheke4083
@sahilbheke4083 Жыл бұрын
codes not uploded
@pratyakshhhhhhhhhhhhhhhhhhhhh
@pratyakshhhhhhhhhhhhhhhhhhhhh 7 ай бұрын
🎉🎉
@aktiwari3379
@aktiwari3379 Жыл бұрын
♥️♥️✌️
@vaibhavrawat4008
@vaibhavrawat4008 5 ай бұрын
wow
@no---on
@no---on 5 ай бұрын
In given example if we just make a little change with 3->2 then after reversing the edge will be 2->3 so in step 3 dfs call 2 will also go to 3 . I feel like it should not go to 3
@abhishekchoudhary7030
@abhishekchoudhary7030 4 ай бұрын
i have the same confusion that if we start with 7 in the start rather than 0 , we will get wrong connected components
@amitp277
@amitp277 Жыл бұрын
👏👏
@kanishkdadhich5354
@kanishkdadhich5354 Жыл бұрын
I have a small doubt related to a test case Suppose the graph's adjacency list is like ( Directed graph, u-->v) 0 1 1 3 3 4 4 1 2 1 There are 3 strongly connected components. But what will be the scc1 , scc2 and scc3 ? I am confused because in my test case the components are as follows:- comp1 ---> comp2
@sanjana-singla
@sanjana-singla Жыл бұрын
It all works out at the end. If you solve the algorithm manually, you can find your doubt solved. Here is it you are given the edges list -> [[0,1],[1,3],[3,4],[4,1],[2,1]] adj Matrix will be -> [[1], [3], [1], [4], [1]] 0 , 1 , 2 , 3 , 4 dfs(0) dfs(2) | dfs(1) | dfs(3) | dfs(4) Stack will be -> 2 0 1 3 4| adjT will be -> [[],[0,2,4],[],[1],[3]] 0, 1 , 2 , 3 , 4 stack traversal will give us -> [2] [0] [1,4,3]
@anishraj66
@anishraj66 Жыл бұрын
bhaiya can,t we solve it by reversing the stack instead of reversing the graph
@visheshagrawal8676
@visheshagrawal8676 Жыл бұрын
stack reversal will reverse the finish time but reversing the graph does not allow us to go from one scc to another scc
@PankajGupta-cx3ji
@PankajGupta-cx3ji 11 ай бұрын
choit💥💥💥
Strongly Connected Components Kosaraju's Algorithm Graph Algorithm
24:30
Tushar Roy - Coding Made Simple
Рет қаралды 224 М.
Mama vs Son vs Daddy 😭🤣
00:13
DADDYSON SHOW
Рет қаралды 49 МЛН
EVOLUTION OF ICE CREAM 😱 #shorts
00:11
Savage Vlogs
Рет қаралды 11 МЛН
G-53. Most Stones Removed with Same Row or Column - DSU
23:51
take U forward
Рет қаралды 88 М.
Is DSA worth it in 2024?
10:36
Harkirat Singh
Рет қаралды 168 М.
5 Math Skills Every Programmer Needs
9:08
Sahil & Sarra
Рет қаралды 1 МЛН
G-46. Disjoint Set | Union by Rank | Union by Size | Path Compression
42:15
Google Data Center 360° Tour
8:29
Google Cloud Tech
Рет қаралды 5 МЛН
8 patterns to solve 80% Leetcode problems
7:30
Sahil & Sarra
Рет қаралды 288 М.
Mama vs Son vs Daddy 😭🤣
00:13
DADDYSON SHOW
Рет қаралды 49 МЛН