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);Patternpattern=Pattern.compile("^[^\\d][^aeiou][^bcDF][^\\r\\n\\t\\f\\s][^AEIOU][^.,]$");Matchermatcher=pattern.matcher(scanner.nextLine());System.out.println(matcher.find());}}/*[^a] means anything other than a*/
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Excluding Specific Characters
You are viewing a single comment's thread. Return to all comments →
Java 15: