ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 백준 2920번 : 음계(Python,파이썬)
    카테고리 없음 2018. 12. 24. 22:48

    1
    2
    3
    4
    5
    6
    7
    8
    9
    digits = list(map(int,input().split(' ')))
    ascending = [1,2,3,4,5,6,7,8]
    descending = [8,7,6,5,4,3,2,1]
    if digits == ascending:
        print('ascending')
    elif digits == descending:
        print('descending')
    else:
        print('mixed')
    cs

    ascending와 descending에 해당하는 리스트를 각각 만들어둔다.

    그 후 입력한 숫자 배열의 리스트가 ascending, descending 두 가지 경우에 일치하지 않으면 mixed의 경우로 넘어가도록 한다.

Designed by Tistory.