You are viewing a single comment's thread. Return to all comments →
I have this code which gives exactly the expected result but still the test cases are failing.
import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern;
public class Solution {
public static void main(String[] args) { Scanner in = new Scanner(System.in); int numSentences = Integer.parseInt(in.nextLine()); while (numSentences-- > 0) { String input = in.nextLine(); String regex = "\\b(\\w+)(\\s+\\1\\b)+"; Pattern p = Pattern.compile(regex, Pattern.CASE_INSENSITIVE); Matcher m = p.matcher(input); String output = m.replaceAll("$1"); System.out.println(output); } in.close(); }
}
Seems like cookies are disabled on this browser, please enable them to open this website
Java Regex 2 - Duplicate Words
You are viewing a single comment's thread. Return to all comments →
I have this code which gives exactly the expected result but still the test cases are failing.
import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern;
public class Solution {
}