C++/Java/Python Code & Notes: drive.google.com/file/d/1ii_a9zN5r10KwyfG61BVPtMeb8Lakw4m/view?usp=sharing Were you able to figure out if it was a Graph Problem ?? If yes, then what triggered that intuition 🙈??
@Mr.Potato23 Жыл бұрын
random exam question in pakistani college.
@DeepSinghC Жыл бұрын
nice
@SauravKumar-r5j2j Жыл бұрын
Just amazing bro ❤❤
@aorusgaming5441 Жыл бұрын
best
@ce063_gautamlathiya5 Жыл бұрын
class Solution { private: void dfs(int node, vector adj, vector &vis, int &cnt){ vis[node] = 1; cnt++; for(auto i : adj[node]){ if(!vis[i]){ dfs(i,adj,vis,cnt); } } } public: int maximumDetonation(vector& bombs) { int n = bombs.size(); vector adj(n, vector()); for(int i = 0; i < n; i++){ for(int j = 0; j < n; j++){ if(i != j){ long long h = bombs[i][0], k = bombs[i][1], r = bombs[i][2]; long long x = bombs[j][0] - h, y = bombs[j][1] - k; if((x*x + y*y)
@tejuschaturvedi6234 Жыл бұрын
pass adj by reference in parameters
@farnazzinnah8541 Жыл бұрын
not watching any other YT videos from now on. Only Aryan's videos. Because he taught me this hard concept in the easiest way possible. I don't think so anyone else can explain as good as him. Thanks man!
@biswaMastAadmi Жыл бұрын
zyada ho gya
@aditimahabole1761 Жыл бұрын
your explanation is toooo good bro!
@sanskarkumar028 Жыл бұрын
very easy explanation. thanku sir
@tejaswijadhav8031 Жыл бұрын
Nice explanation sir
@rudrikasingh2892 Жыл бұрын
Great solution ! Though one doubt. Why in the java solution we are using an array to count number of visited states?
@harshal8781 Жыл бұрын
bro want a logic 🤗🤗
@ashishdhal4614 Жыл бұрын
Largest island problem with a bit of 8 grade math
@summerkoushal679 Жыл бұрын
bro you always succeed to tell the visualisation of intuition, no one can do this good. You are a gem of a guy 🫀