- Difficulty: Level 1
- Type: Array/Sorting
- link
import collections
def solution(N, stages):
# Count each occurrence
counter = collections.Counter(stages)
# Dict to save fail rate
failure = collections.defaultdict(float)
keys = list(counter.keys())
for i in range(1,N+1):
# Total sum of occurence for stages greater or equal
total = sum([counter[k] if k>= i else 0 for k in keys])
# Exception handling for zero division
if total == 0:
failure[i] = 0
else:
failure[i] = counter[i] / total
# Sort result by failure rate in descending order
ans = sorted(list(range(1,N+1)),key=lambda x: failure[x],reverse=True)
return ans