-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmutual_followers.py
53 lines (38 loc) · 1.31 KB
/
mutual_followers.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
'''
You are given a two-dimensional list of integers relations. Each element relations[i] contains [a, b] meaning that person a is following person b on Twitter.
Return the list of people who follow someone that follows them back, sorted in ascending order.
solution: the idea is that we use 2 containers to store - one for traversing and the other for checking then adding
we check if (b,a) is already seen then we add it to the final array
'''
class Solution:
def solve(self, relations):
ans = set()
seen = set()
for a, b in relations:
seen.add((a, b))
time.sleep(0.5)
print('added ', (a, b))
if (b, a) in seen:
print('(b,a) in seen', (b, a))
time.sleep(0.5)
ans.add(b)
ans.add(a)
k = list(ans)
rtr = sorted(k)
print('----------')
print(rtr)
return rtr
----------------------------------------------------------------------
class Solution:
def solve(self, relations):
res = set()
ans = set()
for a, b in relations:
ans.add((a, b))
if (b, a) in ans:
res.add(b)
res.add(a)
res = list(res)
res.sort()
print(res)
return res