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.
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
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: , where is the total number of letters.
Comments