Accounts Merge
Medium
Graphs
Array
String
DFS
BFS
Union Find
Merge accounts with same email. Each account on line: name email1 email2...
Constraints
1 ≤ accounts ≤ 1000
Examples
Example 1:
Input: John [email protected] [email protected]
John [email protected] [email protected]
Mary [email protected]
John [email protected]
Output: John [email protected] [email protected] [email protected]
Mary [email protected]
John [email protected]
Tests:
Runtime:
Memory:
Test
Input:
Expected:
Got:
Click Run Code to test against sample cases, or Submit to test against all cases.
▲ Console