Skip to content

Commit d082bce

Browse files
add 2039
1 parent 3d2b268 commit d082bce

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/com/fishercoder/solutions/_2039.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010

1111
public class _2039 {
1212
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+
*/
1316
public int networkBecomesIdle(int[][] edges, int[] patience) {
1417
int n = patience.length;
1518
int[] distances = findShortestPathToMasterServer(edges, n);

0 commit comments

Comments
 (0)