Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Leetcode_824_Goat Latin #59

Open
lihe opened this issue Dec 22, 2019 · 0 comments
Open

Leetcode_824_Goat Latin #59

lihe opened this issue Dec 22, 2019 · 0 comments
Labels

Comments

@lihe
Copy link
Owner

lihe commented Dec 22, 2019

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"

Example 2:

Input: "The quick brown fox jumped over the lazy dog"
Output: "heTmaa uickqmaaa rownbmaaaa oxfmaaaaa umpedjmaaaaaa overmaaaaaaa hetmaaaaaaaa azylmaaaaaaaaa ogdmaaaaaaaaaa"

Notes:

  • S contains only uppercase, lowercase and spaces. Exactly one space between each word.
  • 1 <= S.length <= 150.
class Solution {
    public String toGoatLatin(String S) {
        Set<Character> vowel = new HashSet<>();
        for(char c: new char[]{'a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U'})
            vowel.add(c);

        int t = 1;
        StringBuilder ans = new StringBuilder();
        for(String word: S.split(" ")){
            char first = word.charAt(0);
            if(vowel.contains(first)){
                ans.append(word);
            }
            else{
                ans.append(word.substring(1));
                ans.append(word.substring(0, 1));
            }

            ans.append("ma");
            for(int i = 0; i < t; i++){
                ans.append("a");
            }
            t++;
            ans.append(" ");
        }

        ans.deleteCharAt(ans.length() - 1);  
        return ans.toString();
    }
}
@lihe lihe added the Leetcode label Dec 22, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant