https://www.hackerrank.com/challenges/pattern-syntax-checker/problem?isFullScreen=true Pattern Syntax Checker | HackerRank Given a regex, determine if the pattern is valid or not using Pattern.compile method. www.hackerrank.com import java.util.Scanner; import java.util.regex.*; public class Solution { public static void main(String[] args){ Scanner in = new Scanner(System.in); int testCases = I..