Goat Latin

A sentence S is 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 from S to Goat Latin. 

Example 1:

Input: "I speak Goat Latin"
Output: "Imaa peaksmaaa oatGmaaaa atinLmaaaaa"

思路:这题纯粹考察stringbuilder的操作,按照三条原则写就可以了;适合做电面题;

class Solution {
    public String toGoatLatin(String sentence) {
        HashSet set = new HashSet<>();
        set.add('a'); set.add('e'); set.add('i'); set.add('o'); set.add('u');
        set.add('A'); set.add('E'); set.add('I'); set.add('O'); set.add('U');
        
        StringBuilder sb = new StringBuilder();
        String[] splits = sentence.split(" ");
        for(int i = 0; i < splits.length; i++) {
            char firstchar = splits[i].charAt(0);
            if(set.contains(firstchar)) {
                sb.append(splits[i]).append("ma");
            } else if(!set.contains(firstchar)) {
                sb.append(splits[i].substring(1)).append(firstchar).append("ma");
            }
            int k = i + 1;
            while(k > 0) {
                sb.append("a");
                k--;
            }
            if(i < splits.length - 1) {
                sb.append(" ");
            }
        }
        return sb.toString();
    }
}

你可能感兴趣的:(String,leetcode)