diff --git a/README.md b/README.md index c192ce0d..f534c0dd 100644 --- a/README.md +++ b/README.md @@ -920,7 +920,7 @@ 638| [Shopping Offers](https://leetcode.com/problems/shopping-offers/) | [Python](./leetcode_python/Depth-First-Search/shopping-offers.py) | _O(n * 2^n)_ | _O(n)_| Medium |`google`| AGAIN (not start*) 690| [Employee Importance](https://leetcode.com/problems/employee-importance/) |[Python](./leetcode_python/Depth-First-Search/employee-importance.py) | _O(n)_ | _O(h)_ | Easy | DFS, BFS,`good basic` ,`UBER`| OK** (3) 694| [Number of Distinct Islands](https://leetcode.com/problems/number-of-distinct-islands/) | [Python](./leetcode_python/Depth-First-Search/number-of-distinct-islands.py) | _O(m * n)_ | _O(m * n)_ | Medium |`#200, #711 Number of Islands` good pattern, dfs, 🔒, compare with `# 200 Number of Islands`, `amazon`| AGAIN******** (5) -695| [Max Area of Island](https://leetcode.com/problems/max-area-of-island/) | [Python](./leetcode_python/Depth-First-Search/max-area-of-island.py), [Java](./LeetCodeJava/DFS/MaxAreaOfIsland.java) | _O(m * n)_ | _O(m * n)_ | Medium |`amazon`, `microsoft`, `linkedin`, `basic`| AGAIN* (3) +695| [Max Area of Island](https://leetcode.com/problems/max-area-of-island/) | [Python](./leetcode_python/Depth-First-Search/max-area-of-island.py), [Java](./leetcode_java/src/main/java/LeetCodeJava/DFS/MaxAreaOfIsland.java) | _O(m * n)_ | _O(m * n)_ | Medium |`amazon`, `microsoft`, `linkedin`, `basic`| AGAIN* (3) 711| [Number of Distinct Islands II](https://leetcode.com/problems/number-of-distinct-islands-ii/) | [Python](./leetcode_python/Depth-First-Search/number-of-distinct-islands-ii.py), [Java](./leetcode_java/Depth-First-Search/number-of-distinct-islands-ii.java) | | | Hard |complex, dfs, check `# 200, 694 Number of Distinct Islands`,`amazon`| OK*** (3) 721| [Accounts Merge](https://leetcode.com/problems/accounts-merge/) | [Python ](./leetcode_python/Depth-First-Search/accounts-merge.py) | _O(nlogn)_ | _O(n)_| Medium | dfs, Disjoint Set Union (DSU), `Union Find`,`path compression`, `complex`, `fb`, google, amazon, m$, apple, twitter| AGAIN******* (4) (not start) 733| [Flood Fill](https://leetcode.com/problems/flood-fill/) | [Python](./leetcode_python/Depth-First-Search/flood-fill.py) | _O(m * n)_ | _O(m * n)_ | Easy |`fb`, `amazon`, `good basic`| OK**** (5)