Editorial for JDCC '16 Contest 4 P1 - Vibberish or Cibberish?


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.

Submitting an official solution before solving the problem yourself is a bannable offence.

Author: aurpine

Loop through each character in each word and check if it's vowel or consonant dominant (or neither). Then determine which words are dominant.

Time Complexity: \mathcal{O}(C), where C is the total number of letters.


Comments

There are no comments at the moment.