Published:
Updated:

https://www.hackerrank.com/challenges/valid-username-checker/problem?isFullScreen=true


Solution

import java.io.*;
import java.util.*;

class UserNameValidator {
    public static final String regularExpression = "(^[a-zA-Z][0-9_|a-zA-Z]{7,29})";
}

public class Solution {

    public static void main(String[] args) throws IOException {
        try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
            int n = Integer.parseInt(br.readLine());

            while (n-- != 0) {
                String userName = br.readLine();

                if (userName.matches(UserNameValidator.regularExpression)) {
                    System.out.println("Valid");
                } else {
                    System.out.println("Invalid");
                }
            }
        }
    }
}

Leave a comment