본문 바로가기
> 알고리즘 문제 풀이/BOJ

15969-행복 (python, 파이썬)

by bky373 2020. 10. 14.
n = input()
scores = [int(x) for x in input().split()]

print(max(scores)-min(scores))

댓글