728x90
https://school.programmers.co.kr/learn/courses/30/lessons/12909
소스코드
using System;
public class Solution
{
public bool solution(string s)
{
int count = 0;
if (s[0] == ')')
return false;
foreach (char c in s)
{
if (c == '(')
count++;
else
count--;
if (count < 0)
return false;
}
return count == 0;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.2 다음 큰 숫자 C# (0) | 2023.08.02 |
---|---|
[프로그래머스]Lv.2 최솟값 만들기 C# (0) | 2023.08.02 |
[프로그래머스]Lv.2 게임 맵 최단거리 C#(BFS) (0) | 2023.08.02 |
[프로그래머스]Lv.2 영어 끝말잇기 C# (0) | 2023.08.02 |
[프로그래머스]Lv.2 다리를 지나는 트럭C# (0) | 2023.08.02 |