[Programmers] 올바른 괄호 - 연습문제

동민·2021년 3월 11일
0
// 올바른 괄호  - 연습문제
public class CorrectParentheses {
	public boolean solution(String s) {

		int l = 0, r = 0;

		for (int i = 0; i < s.length(); i++) {

			if (s.charAt(i) == '(') {
				l++;
			} else if (s.charAt(i) == ')') {
				r++;
			}

			if (r > l) {
				return false;
			}
		}

		return r == l ? true : false;
	}

	public static void main(String[] args) {

		CorrectParentheses s = new CorrectParentheses();
		System.out.println(s.solution("()()")); // true
		System.out.println(s.solution("(())()")); // true
		System.out.println(s.solution(")()(")); // false
		System.out.println(s.solution("(()(")); // false

	}

}
s.split("") 보다 s.toCharArray() 로 해결하는 것이 시간효율성 측면에서 좋음
profile
BE Developer

0개의 댓글

관련 채용 정보