MCPcopy Create free account
hub / github.com/MolinDeng/Princeton-algs4 / percolates

Method percolates

01Lab-Percolation/Percolation.java:89–91  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

87
88 // does the system percolate?
89 public boolean percolates() {
90 return uf2.find(gridSize * gridSize + 1) == uf2.find(0);
91 }
92
93 public static void main(String[] args) {
94 int n = StdIn.readInt();

Callers 2

PercolationStatsMethod · 0.95
mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected