일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 위클리 챌린지
- java
- 정규식
- backjoon
- 파이썬
- divmod
- Re
- 정렬
- python
- 수학
- 프로그래머스
- 추석맞이 코딩챌린지
- lambda
- Combinations
- DateTime
- 그리디
- 동적 계획법
- 카카오
- 이분탐색
- programmers
- 재귀함수
- dfs
- 백준
- BFS
- Zip
- 다익스트라
- Set
- 자바
- KAKAO BLIND RECRUITMENT
- heapq
Archives
- Today
- Total
상상쓰
[프로그래머스] 짝지어 제거하기 본문
https://programmers.co.kr/learn/courses/30/lessons/12973
stack 의 LIFO (후입선출) 을 이용하여 차례로 해결해가면 된다.
def solution(s):
answer = -1
stack = []
for i in s:
stack.append(i)
while len(stack) >= 2:
if stack[-1] == stack[-2]:
stack.pop()
stack.pop()
else:
break
answer = 1 if len(stack) == 0 else 0
return answer
print(solution('baabaa')) # 1
'Coding Test' 카테고리의 다른 글
[백준] A → B (0) | 2021.06.26 |
---|---|
[프로그래머스] 위장 (0) | 2021.06.24 |
[프로그래머스] 다단계 칫솔 판매 (0) | 2021.06.23 |
[프로그래머스] 매칭 점수 (0) | 2021.06.22 |
[백준] 수리공 항승 (0) | 2021.06.22 |
Comments