You are viewing a single comment's thread. Return to all comments →
from collections import * def birthdayCakeCandles(n, ar): res = Counter(ar) return res.most_common()[0][1]
Birthday Cake Candles
You are viewing a single comment's thread. Return to all comments →