Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Baekjoon
- 프로그래머스 파이썬
- dacon
- programmers
- 프로그래머스
- Docker
- github
- 금융문자분석경진대회
- SW Expert Academy
- Git
- 편스토랑
- hackerrank
- Kaggle
- ubuntu
- PYTHON
- AI 경진대회
- ChatGPT
- 백준
- 캐치카페
- 자연어처리
- gs25
- 파이썬
- 데이콘
- Real or Not? NLP with Disaster Tweets
- 우분투
- 더현대서울 맛집
- 편스토랑 우승상품
- 코로나19
- 맥북
- leetcode
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 스택/큐 : 탑 (Python) 본문
728x90
반응형
1일 1문제 13일차!
오늘의 문제는 프로그래머스 스택/큐에있는 탑 문제입니다.
def solution(heights):
answer = []
for i in range(len(heights)):
if i == 0:
answer.append(0)
else:
for j in range(i, 0, -1):
check_flag = False
if heights[i] < heights[j]:
answer.append(j+1)
check_flag = True
break
if check_flag == False:
if heights[0] > heights[i]:
answer.append(1)
else:
answer.append(0)
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 2. Add Two Numbers (Python) (0) | 2020.02.21 |
---|---|
[leetCode] 7. Reverse Integer (Python) (0) | 2020.02.21 |
[BaeKJoon] 10828번: 스택 (Python) (0) | 2020.02.18 |
[BaeKJoon] 1377번: 버블 소트 (Python) (0) | 2020.02.17 |
[BaeKJoon] 11004번: K번째 수 (Python) (0) | 2020.02.16 |
Comments