diff --git "a/\347\256\227\346\263\225\346\200\235\347\273\264\347\263\273\345\210\227/UnionFind\347\256\227\346\263\225\345\272\224\347\224\250.md" "b/\347\256\227\346\263\225\346\200\235\347\273\264\347\263\273\345\210\227/UnionFind\347\256\227\346\263\225\345\272\224\347\224\250.md" index 1217326aed926d8c44eecf2c96d6f2628260f01b..dad7c5ce176243ec46fee81213d82eda481d4496 100644 --- "a/\347\256\227\346\263\225\346\200\235\347\273\264\347\263\273\345\210\227/UnionFind\347\256\227\346\263\225\345\272\224\347\224\250.md" +++ "b/\347\256\227\346\263\225\346\200\235\347\273\264\347\263\273\345\210\227/UnionFind\347\256\227\346\263\225\345\272\224\347\224\250.md" @@ -18,7 +18,7 @@ [130.被围绕的区域](https://leetcode-cn.com/problems/surrounded-regions) -[990.等式方程的可满足性](https://leetcode-cn.com/problems/surrounded-regions) +[990.等式方程的可满足性](https://leetcode-cn.com/problems/satisfiability-of-equality-equations) [261.以图判树](https://leetcode-cn.com/problems/graph-valid-tree/) @@ -254,6 +254,8 @@ boolean equationsPossible(String[] equations) { ======其他语言代码====== +### java + 第261题的Java代码(提供:[LEODPEN](https://github.com/LEODPEN)) ```java