Sort by

recency

|

63 Discussions

|

  • + 0 comments

    Java 15:

    import java.io.*;
    import java.util.*;
    import java.util.regex.Pattern;
    import java.util.regex.Matcher;
    public class Solution {
        public static void main(String[] args) {
            Scanner scanner = new Scanner(System.in);
            // Pattern pattern = Pattern.compile("(ok){3,}");   //WORKS
            Pattern pattern = Pattern.compile("(ok)\\1\\1");    
            // \\1 means anything in first captured-group. Here ok is in first ()
            Matcher matcher = pattern.matcher(scanner.nextLine());
            System.out.println(matcher.find()); 
        }
    }
    
  • + 0 comments
    (ok){3,}
    
  • + 0 comments

    For Python3

    Regex_Pattern = r'(ok){3,}'

  • + 0 comments

    JavaScript. /(ok){3,}/;

  • + 0 comments

    JAVAScript Solution

    var Regex_Pattern = /(ok){3,}/;