A sentenceSis given, composed of words separated by spaces. Each word consists of lowercase and uppercase letters only.

We would like to convert the sentence to "Goat Latin" (a made-up language similar to Pig Latin.)

The rules of Goat Latin are as follows:

  • If a word begins with a vowel (a, e, i, o, or u), append"ma" to the end of the word.
    For example, the word 'apple' becomes 'applema'.

  • If a word begins with a consonant (i.e. not a vowel), remove the first letter and append it to the end, then add
    "ma".For example, the word"goat" becomes"oatgma".

  • Add one letter'a' to the end of each word per its word index in the sentence, starting with 1. For example, the first word gets"a"added to the end, the second word gets"aa"added to the end and so on.

Return the final sentence representing the conversion fromS to Goat Latin.

照要求做吧,也没啥意思

class Solution {
    public String toGoatLatin(String S) {
        String[] words = S.split("\\s+");
        StringBuilder res = new StringBuilder();

        for(int i = 0; i < words.length; i++){
            res.append(process(words[i]));
            for(int j = 0; j < i + 1; j++)
                res.append("a");

            if(i != words.length - 1)
                res.append(" ");
        }

        return res.toString();
    }

    public String process(String word) {
        if(isVowel(word.charAt(0))) {
            return word + "ma";
        } else {
            return word.substring(1) + word.charAt(0) + "ma";
        }
    }

    public boolean isVowel(char c) {
        return c == 'a' || c == 'A' || c == 'e' || c == 'E' || c == 'i' || c == 'I' || c == 'o' || c == 'O' || c == 'u' || c == 'U';
    }
}

results matching ""

    No results matching ""