-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPatternSyntaxChecker.java
More file actions
32 lines (27 loc) Β· 875 Bytes
/
PatternSyntaxChecker.java
File metadata and controls
32 lines (27 loc) Β· 875 Bytes
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
// https://www.hackerrank.com/challenges/pattern-syntax-checker/problem
import java.util.Scanner;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;
public class PatternSyntaxChecker {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int queries = scanner.nextInt();
scanner.nextLine();
while (queries-- > 0) {
String regex = scanner.nextLine();
if (isValidPattern(regex)) {
System.out.println("Valid");
} else {
System.out.println("Invalid");
}
}
}
private static boolean isValidPattern(String regex) {
try {
Pattern.compile(regex);
return true;
} catch (PatternSyntaxException exception) {
return false;
}
}
}