Skip to content

Commit 3b93dd9

Browse files
committed
feat: add 2nd solution to lc problems with c++ codes: No.2685
1 parent e2b2dfb commit 3b93dd9

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

solution/2600-2699/2685.Count the Number of Complete Components/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,6 @@ func countCompleteComponents(n int, edges [][]int) (ans int) {
238238

239239
### 方法二:取巧做法
240240

241-
> [我的题解](https://leetcode.cn/problems/count-the-number-of-complete-components/solutions/2269282/zui-jian-ji-jie-fa-c-stlzuo-fa-by-dengsc-rw5e/)
242-
243241
要解决的问题:
244242

245243
1. 如何保存每一个节点与其它点联通状态

solution/2600-2699/2685.Count the Number of Complete Components/README_EN.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,6 @@ func countCompleteComponents(n int, edges [][]int) (ans int) {
226226

227227
### 方法二:Simple Method
228228

229-
> [My Solution Link](https://leetcode.cn/problems/count-the-number-of-complete-components/solutions/2269282/zui-jian-ji-jie-fa-c-stlzuo-fa-by-dengsc-rw5e/)
230-
231229
Problems needed to solve:
232230

233231
1. How do we maintain the link state between each node and the others? 如

0 commit comments

Comments
 (0)