-
Notifications
You must be signed in to change notification settings - Fork 7
/
Braces.java
58 lines (53 loc) · 1.66 KB
/
Braces.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//package accentureQ;
//
//public class Braces {
// public static void main(String[] args) {
// String str = "}}{}}}";
//
// if (str.length()%2 == 0){
// for (int i = 0; i < str.length()-1; i++) {
// if(str.charAt(i) == '{'){
// for (int j = str.length()-1; j >= i; j--) {
// if (str.charAt(j) == '}') break;
// }
// }
// else System.out.println("Compilation error");
//
// }
// System.out.println("Successful");
// }
// else System.out.println("Compilation error");
// }
//
//
//}
package accentureQ;
public class Braces {
public static void main(String[] args) {
String str = "{{}}{";
if (str.length() % 2 == 0) {
boolean isProperlyNested = checkProperlyNested(str);
if (isProperlyNested) {
System.out.println("Braces are properly nested.");
} else {
System.out.println("Braces are not properly nested.");
}
} else {
System.out.println("Compilation error");
}
}
public static boolean checkProperlyNested(String str) {
int count = 0;
for (int i = 0; i < str.length(); i++) {
if (str.charAt(i) == '{') {
count++;
} else if (str.charAt(i) == '}') {
count--;
}
if (count < 0) {
return false; // Unmatched closing brace found
}
}
return count == 0; // True if braces are properly nested
}
}