Count the Number of Complete ComponentsYou are given an integer n. There is an undirected graph with n vertices, numbered from 0 to n - 1.Return the number of complete connected components of the graph.A connected component is complete if there exists an edge between every pair of its vertices.