Problem · Graph
Count the Number of Complete Components
Problem statement
You are given an integer n and an undirected graph whose vertices are numbered from 0 through n - 1. The array edges contains each undirected edge [u, v].
A connected component is complete when every pair of distinct vertices in that component is joined by an edge.
The problem statement continues
ProExamples
Example 1
n = 6edges = [[0,1],[0,2],[1,2],[3,4]]return = 3The components are {0,1,2}, {3,4}, and {5}. Each contains every possible internal edge, so all three are complete.
FastPrep Pro
Reported in 1 Amazon interview this weekUnlock this recently reported problem
FastPrep Pro gives you full access to interview problems reported within the last week.
- Full problem statement and constraints
- 2 more worked examples, explained
- Guided hints and editorial
- Run your code on real test cases
$9/month
Pro subscription, billed yearly — or $19 month-to-month. Cancel anytime.
Free plan — 2 of 2 free unlocks used this week