오름차순이면 ascending
반대면 descending
둘다 아니면 mixed
arr = list(map(int, input().split()))
pivot = [i for i in range(1, 9)]
if arr == pivot:
print('ascending')
elif arr == pivot[::-1]:
print('descending')
else:
print('mixed')
'practivceAlgorithm > 백준' 카테고리의 다른 글
[백준][Python] 2960 에스타라노스의 체 (0) | 2021.10.29 |
---|---|
[백준][Python][삼성 2021 하반기 코딩테스트] 23288 주사위 굴리기2 (0) | 2021.10.26 |
[백준][Python] 2475 검증수 (0) | 2021.10.23 |
[백준][Python] 1976 여행가자 (0) | 2021.10.21 |
[백준][Python] 17451 평행우주 (0) | 2021.10.21 |