def breakingRecords(scores):
# Write your code here
max_score = scores[0];min_score = scores[0]
max_break = 0;min_break = 0
for score in scores[1:]:
if score > max_score:
max_score = score
max_break += 1
elif score < min_score:
min_score = score
min_break += 1
return [max_break, min_break]
'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글
[HackerRank-python] Divisible Sum Pairs (0) | 2022.07.03 |
---|---|
[HackerRank-python] Subarray Division (0) | 2022.07.03 |
[HackerRank-python] Between Two Sets (0) | 2022.07.02 |
[HackerRank-python] Number Line Jumps (0) | 2022.07.01 |
[HackerRank-python] Apple and Orange (0) | 2022.06.29 |