forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 14
/
number-of-boomerangs.py
43 lines (35 loc) · 1.13 KB
/
number-of-boomerangs.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
# Time: O(n^2)
# Space: O(n)
import collections
class Solution(object):
def numberOfBoomerangs(self, points):
"""
:type points: List[List[int]]
:rtype: int
"""
result = 0
for i in xrange(len(points)):
group = collections.defaultdict(int)
for j in xrange(len(points)):
if j == i:
continue
dx, dy = points[i][0] - points[j][0], points[i][1] - points[j][1]
group[dx**2 + dy**2] += 1
for _, v in group.iteritems():
if v > 1:
result += v * (v-1)
return result
def numberOfBoomerangs2(self, points):
"""
:type points: List[List[int]]
:rtype: int
"""
cnt = 0
for a, i in enumerate(points):
dis_list = []
for b, k in enumerate(points[:a] + points[a + 1:]):
dis_list.append((k[0] - i[0]) ** 2 + (k[1] - i[1]) ** 2)
for z in collections.Counter(dis_list).values():
if z > 1:
cnt += z * (z - 1)
return cnt