Skip to content

Commit cfbb952

Browse files
committed
chore: edit #263 comment
1 parent 54fcb0f commit cfbb952

File tree

1 file changed

+1
-1
lines changed
  • number-of-connected-components-in-an-undirected-graph

1 file changed

+1
-1
lines changed

number-of-connected-components-in-an-undirected-graph/EGON.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def countComponents(self, n: int, edges: List[List[int]]) -> int:
1313
return self.solve_union_find(n, edges)
1414

1515
"""
16-
LintCode 로그인이 안되어서 https://neetcode.io/problems/valid-tree에서 실행시키고 통과만 확인했습니다.
16+
LintCode 로그인이 안되어서 https://neetcode.io/problems/count-connected-components에서 실행시키고 통과만 확인했습니다.
1717
1818
Runtime: ? ms (Beats ?%)
1919
Time Complexity: O(max(m, n))

0 commit comments

Comments
 (0)