코테분석#4-1. 행복(백준 15969)

정은경·2020년 2월 24일
0

알고리즘

목록 보기
5/125

문제

https://www.acmicpc.net/problem/15969

나의 답안

count = int(input())
score_list = list(map(int, input().split(' ')))
print(max(score_list)-min(score_list))

쌤's 솔루션

예제입력과 출력을 먼저보고 문제를 읽어보면 이해가 쉽습니다
예제값을 입력해서 작성한 코드가 잘 돌아가는 지 확인할 것!

N, lst = input(), list(map(int, input().split()))
print(max(lst)-min(lst))
profile
#의식의흐름 #순간순간 #생각의스냅샷

0개의 댓글