Skip to content

Commit

Permalink
fix link
Browse files Browse the repository at this point in the history
  • Loading branch information
yennanliu committed Sep 30, 2023
1 parent 0dd1649 commit 2c49be7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2c49be7

Please sign in to comment.