We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
importjava.io.*;importjava.util.*;importjava.util.regex.Pattern;importjava.util.regex.Matcher;publicclassSolution{publicstaticvoidmain(String[]args){Scannerscanner=newScanner(System.in);intn=Integer.parseInt(scanner.nextLine());Stringstr="C:CPP:JAVA:PYTHON:PERL:PHP:RUBY:CSHARP:";// The full stringArrayList<String>arraylist=newArrayList<String>(Arrays.asList(str.split(":")));Patternpattern=Pattern.compile("\\d+\\s*(.*)");for(inti=0;i<n;i++){Matchermatcher=pattern.matcher(scanner.nextLine());if(matcher.find()){if(arraylist.contains(matcher.group(1)))System.out.println("VALID");elseSystem.out.println("INVALID");}}}}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
HackerRank Language
You are viewing a single comment's thread. Return to all comments →
Java 15