Skip to content

Instantly share code, notes, and snippets.

View asutoshgha's full-sized avatar

ASUTOSH GHANTO asutoshgha

  • CleverTap
  • Mumbai
  • 14:11 (UTC +05:30)
View GitHub Profile
@asutoshgha
asutoshgha / arun.ipynb
Created January 24, 2021 15:33
This is the code for Arun chauhan's assignment .It has 3 questions .
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@asutoshgha
asutoshgha / disjointsetimpoved.cpp
Last active September 12, 2020 15:21
disjointsetwithpathcompression
int parent[1000];
void make_set(int v){
parent[v]=v;
}
int findset(int v){
if(v == parent[v])
return v;