728x90
https://school.programmers.co.kr/learn/courses/30/lessons/12909
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#혁준
def solution(s):
s = list(s)
cnt_left = 0
cnt_right = 0
# 오른쪽 )이 많다면 바로 false
for i in s:
if i =='(':
cnt_left +=1
else:
cnt_right +=1
if cnt_right > cnt_left:
return False
# (,) 갯수같으면 true
if cnt_left == cnt_right:
return True
else:
return False
|
cs |
728x90
'코딩테스트 > 구현' 카테고리의 다른 글
[python] Lv.2 프로그래머스: 이진 변환 반복하기 (0) | 2023.03.08 |
---|---|
[python] Lv.2 프로그래머스: 최솟값만들기 (0) | 2023.03.08 |
[python] Lv.2 프로그래머스: JadenCase 문자열 만들기 (0) | 2023.03.07 |
<PART 3> 백준 1010번: 다리 놓기 (0) | 2022.11.17 |
<PART 3> Q9.프로그래머스 2020 KAKAO BLIND RECRUITMENT 문자열 압축 (0) | 2022.11.15 |
댓글