-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.py
28 lines (26 loc) · 866 Bytes
/
Solution.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
class Solution:
def accountsMerge(self, accounts: List[List[str]]) -> List[List[str]]:
def find(x):
if p[x] != x:
p[x] = find(p[x])
return p[x]
n = len(accounts)
p = list(range(n))
email_id = {}
for i, account in enumerate(accounts):
name = account[0]
for email in account[1:]:
if email in email_id:
p[find(i)] = find(email_id[email])
else:
email_id[email] = i
mp = defaultdict(set)
for i, account in enumerate(accounts):
for email in account[1:]:
mp[find(i)].add(email)
ans = []
for i, emails in mp.items():
t = [accounts[i][0]]
t.extend(sorted(emails))
ans.append(t)
return ans