Skip to content

Instantly share code, notes, and snippets.

View KaiSforza's full-sized avatar
🔁

Kai Sforza KaiSforza

🔁
View GitHub Profile
public class Percolation {
private int width;
private int count;
private int[] sz;
private int[] id;
//imported
// Return the number of disjoint sets.
public int count() {