Skip to content

Commit 1cc1edd

Browse files
committed
Modifying Efficient Solution - Problem - 1287 - Element Appearing More Than 25 Time
1 parent f70857f commit 1cc1edd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Element_Appearing_More_Than_25_time/EfficientSolution.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
#
1616
#Input: arr = [1,2,2,6,6,6,6,7,10]
1717
#Output: 6
18-
from collections import Counter as c
1918
class Solution:
2019
def finaSpecialInteger(self, arr):
21-
tmp = c(arr) #Initialize tmp and count the occurance of numbers
22-
return (''.join([str(key) for key, val in tmp.items() if val/len(arr) > 1/4])) #Return the number whose occurance is more tha 25% times
20+
return (''.join([str(key) for key, val in collections.Counter(arr).items() if val/len(arr) > 1/4])) #Return the number whose occurance is more tha 25% times

0 commit comments

Comments
 (0)