We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d2b268 commit d082bceCopy full SHA for d082bce
src/main/java/com/fishercoder/solutions/_2039.java
@@ -10,6 +10,9 @@
10
11
public class _2039 {
12
public static class Solution1 {
13
+ /**
14
+ * My completely original solution, again, using a pen and paper to visualize my thought process helps out greatly!
15
+ */
16
public int networkBecomesIdle(int[][] edges, int[] patience) {
17
int n = patience.length;
18
int[] distances = findShortestPathToMasterServer(edges, n);
0 commit comments