ALCHH-Editorial

PROBLEM LINK-: CLICK HERE

PROBLEM SETTERS-: @dcpandey

EDITORIALIST-: @dcpandey

DIFFICULTY-: Easy

PREREQUISITES-: IMPLEMENTATION ,STRING ,SET

PROBLEM-: Alien likes to give challenges to Codezen team to check their implementation ability, this time he has given a string S and asked to find out whether the given string is a GOOD string or not. According to the challenge GOOD String is a string that has at least 3 consecutive vowels and at least 5 different consonants.

EXPLANATION-: Team just need to count distinct consonant present in the string and then they have to check whether there a sequence of 3 or more than 3 vowels is present in the string or not.

SOLUTION-: CLICK HERE