-
Notifications
You must be signed in to change notification settings - Fork 110
/
solution.py
43 lines (30 loc) · 845 Bytes
/
solution.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
#!/bin/python
import math
import os
import random
import re
import sys
#
# Complete the 'birthdayCakeCandles' function below.
#
# The function is expected to return an INTEGER.
# The function accepts INTEGER_ARRAY candles as parameter.
#
def birthdayCakeCandles(candles):
# Write your code here
count=0
#store the max height of candles
big = max(candles)
for i in range(len(candles)):
#if a candle is equal to big increament the count
if(candles[i]==big):
count+=1
#return count variable
return count
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
candles_count = int(raw_input().strip())
candles = map(int, raw_input().rstrip().split())
result = birthdayCakeCandles(candles)
fptr.write(str(result) + '\n')
fptr.close()