Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 1차원 DP
- 2차원 dp
- 99클럽
- @GeneratedValue
- @GenericGenerator
- @Transactional
- Actions
- Amazon EFS
- amazon fsx
- Android Studio
- ANSI SQL
- async/await
- AVG
- AWS
- Azure
- bind
- builder
- button
- c++
- c++ builder
- c03
- Callback
- case when
- CCW
- chat GPT
- CICD
- Collections
- Combination
- combinations
- Comparator
Archives
- Today
- Total
기록
프로그래머스_괄호 회전하기 본문
문제
https://programmers.co.kr/learn/courses/30/lessons/76502
풀이
1. 왼쪽으로 i칸씩 회전한다.
new_s = s[i:] + s[:i]
2. 회전하여 생성된 new_s를 stack을 이용하여 올바른 괄호인지 확인한다.
코드
def solution(s):
count = 0
for i in range(len(s)) :
# rotation
new_s = s[i:] + s[:i]
# 올바른 괄호인지 확인
stack = [0]
for item in new_s :
if item in ['(', '[', '{'] : stack.append(item)
elif item==')' and stack[-1]=='(': stack.pop()
elif item==']' and stack[-1]=='[': stack.pop()
elif item=='}' and stack[-1]=='{': stack.pop()
else :
stack.append(item)
break
if stack==[0] : count+=1
return count
'코딩테스트 > python' 카테고리의 다른 글
프로그래머스_메뉴 리뉴얼 (0) | 2021.05.27 |
---|---|
프로그래머스_2개 이하로 다른 비트 (0) | 2021.05.19 |
프로그래머스_쿼드압축 후 개수 세기 (0) | 2021.05.18 |
프로그래머스_행렬 테두리 회전하기 (0) | 2021.05.16 |
백준_9328_열쇠 (0) | 2021.02.11 |
Comments