> 알고리즘 문제 풀이/BOJ
15969-행복 (python, 파이썬)
bky373
2020. 10. 14. 19:54
n = input()
scores = [int(x) for x in input().split()]
print(max(scores)-min(scores))