Leta Learns

[Python] Intermediate Low - Basic #최대 최소 본문

Coding/codetree

[Python] Intermediate Low - Basic #최대 최소

leta 2021. 8. 3. 16:49

 

# 최대 최소

 

 

 

- n개의 숫자 중 최소 https://www.codetree.ai/missions/2/concepts/1/problems/min-of-n-num/description

 

코드트리

삼성 SW역량테스트, 코드트리와 함께

www.codetree.ai

n = int(input())
arr = list(map(int, input().split()))
min1 = min(arr)
print(min(arr), arr.count(min1))

 

 

 

 

- n개의 숫자 중 최대 2개 https://www.codetree.ai/missions/2/concepts/1/problems/two-max-of-n-num/description

 

코드트리

삼성 SW역량테스트, 코드트리와 함께

www.codetree.ai

n = int(input())
arr = list(map(int, input().split()))
arr.sort(reverse=True)
print(arr[0], arr[1])

 

 

 

 

- 중복되지 않는 숫자 중 최대 https://www.codetree.ai/missions/2/concepts/1/problems/max-of-unique-number/description

 

코드트리

삼성 SW역량테스트, 코드트리와 함께

www.codetree.ai

n = int(input())
arr = list(map(int, input().split()))
count = 0
not_dup = []

for i in arr:
    if arr.count(i) == 1:
        count += 1
        not_dup.append(i)
if count != 0:
    print(max(not_dup))
else:
    print(-1)

 

 

 

'Coding > codetree' 카테고리의 다른 글

[Python] Intermediate Low - DP  (0) 2021.08.13
[Python] Intermediate Low - DFS , BFS  (0) 2021.08.11
[Python] Intermediate Low - Basic #단순 반복문  (0) 2021.08.03
Comments