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("()()"));
System.out.println(s.solution("(())()"));
System.out.println(s.solution(")()("));
System.out.println(s.solution("(()("));
}
}
s.split("") 보다 s.toCharArray() 로 해결하는 것이 시간효율성 측면에서 좋음