[Softeer] [파이썬] 8단 변속기
[6일차] [코딩테스트] [Level 2] [Python]
🎀 본 게시물은 Softeer 연습문제 풀이 게시물입니다. 🎀
https://softeer.ai/practice/info.do?idx=1&eid=408&sw_prbl_sbms_sn=174536
딱히 좋은 방법이 떠오르지 않았다…
🚀 나의 풀이 ⭕
import sys
if __name__=="__main__":
# input = sys.stdin.readline
arr = list(map(int, input().split()))
up=0
down=0
for i in range(1,len(arr)):
if arr[i]>arr[i-1]:
up+=1
down=0
else:
up=0
down+=1
if up !=7 and down !=7:
print('mixed')
else:
if up==7:
print('ascending')
if down==7:
print('descending')
🌜 개인 공부 기록용 블로그입니다. 오류나 틀린 부분이 있을 경우
언제든지 댓글 혹은 메일로 지적해주시면 감사하겠습니다! 😄