[LeetCode] 323. Number of Connected Components in an Undirected Graph
![[LeetCode] 323. Number of Connected Components in an Undirected Graph](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FQAK4h%2FbtrS5xkuAtL%2FY0KBvyX5f7wfKIQdYKcMRk%2Fimg.jpg)
[LeetCode] 323. Number of Connected Components in an Undirected Graph
323. Number of Connected Components in an Undirected Graph Medium You have a graph of n nodes. You are given an integer n and an array edges where edges[i] = [ai, bi] indicates that there is an edge between ai and bi in the graph. Return the number of connected components in the graph. Example 1: Input: n = 5, edges = [[0,1],[1,2],[3,4]] Output: 2 Example 2: Input: n = 5, edges = [[0,1],[1,2],[2..