Python 시작하면서 Java로 풀었던 코테를 바꿔볼까한다.
https://nam-00.tistory.com/entry/CodeUP-ID-4891-%ED%96%89%EB%B3%B5-%EB%8B%B5
Python
n = int(input());
score = [];
for i in range(n):
score.append(int(input()));
max = max(score);
min = min(score);
print(max-min);
뭐지... 왜 이리 간략해졌지..
해보니까 뭔가 느낌이 이상하다.. ㅋㅋㅋ
728x90
'코딩 테스트 > Python' 카테고리의 다른 글
[Programmers] 하샤드 수 (0) | 2024.11.22 |
---|---|
[Programmers] 배열의 평균값 (0) | 2024.11.22 |
[Programmers] Python 369게임 (0) | 2024.11.22 |
[CodeUP] ID3130 소들의 헤어스타일 (0) | 2024.11.21 |
[CodeUP] ID3130 : 소들의 헤어스타일 (1) | 2024.11.20 |