728x90
def solution(s):
answer=False
if len(s)%2 ==1:
return False
left=0
right=0
for cha in s:
if cha=='(':
left+=1
elif cha==')':
right+=1
if left <right:
break
if left==right:
answer=True
return answer
'STUDY > Algorithm' 카테고리의 다른 글
[프로그래머스] LEVEL3 서머코딩/윈터코딩(2019) 종이접기, python3 (0) | 2020.01.08 |
---|---|
[프로그래머스] LEVEL2 땅따먹기, python3 (0) | 2020.01.07 |
[프로그래머스] 2020카카오공채 괄호 변환, python3 (0) | 2020.01.02 |
[프로그래머스] LEVEL2 카펫, python3, 완전탐색 (0) | 2019.11.20 |
[프로그래머스] LEVEL2 타겟 넘버, python3, 깊이/너비 우선 탐색(DFS/BFS) (0) | 2019.11.20 |