Commonly asked Data Structures and Algorithms Problems by big tech and different solution approaches with code in Java and C

Powered by Blogger.

Sunday, August 13, 2017

Hackerrank in A string



Code:

import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;

public class Solution {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int q = in.nextInt();
        for(int a0 = 0; a0 < q; a0++){
            String s = in.next();
            Pattern p=Pattern.compile("h+.*a+.*c+.*k+.*e+.*r+.*r+.*a+.*n+.*k+.*");
            Matcher m=p.matcher(s);
            System.out.println(m.find()?"YES":"NO");
        }
    }
}

0 Comments:

Post a Comment

Stats