-
Notifications
You must be signed in to change notification settings - Fork 613
/
1086.py
53 lines (40 loc) · 1.53 KB
/
1086.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
'''
Given a list of scores of different students, return the average score of each student's top five scores in the order of each student's id.
Each entry items[i] has items[i][0] the student's id, and items[i][1] the student's score. The average score is calculated using integer division.
Example 1:
Input: [[1,91],[1,92],[2,93],[2,97],[1,60],[2,77],[1,65],[1,87],[1,100],[2,100],[2,76]]
Output: [[1,87],[2,88]]
Explanation:
The average of the student with id = 1 is 87.
The average of the student with id = 2 is 88.6. But with integer division their average converts to 88.
Note:
1 <= items.length <= 1000
items[i].length == 2
The IDs of the students is between 1 to 1000
The score of the students is between 1 to 100
For each student, there are at least 5 scores
'''
class Solution(object):
def highFive(self, items):
"""
:type items: List[List[int]]
:rtype: List[List[int]]
"""
if not items:
return []
score_map = {}
for item in items:
if item[0] in score_map:
score_map[item[0]].append(item[1])
else:
score_map[item[0]] = [item[1]]
result = []
for key, value in score_map.items():
value.sort(reverse=True)
if len(value) >= 5:
average = value[:5]
else:
average = value
score_map[key] = sum(average)/len(average)
result.append([key, score_map[key] ])
return result