博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] 824. Goat Latin
阅读量:5890 次
发布时间:2019-06-19

本文共 2073 字,大约阅读时间需要 6 分钟。

Problem (and this is a very stupid problem...)

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.

Solution

class Solution {    public String toGoatLatin(String S) {        String[] words = S.split(" ");        String as = "";        StringBuilder sb = new StringBuilder();        Set
vowel = new HashSet<>(); vowel.add('a'); vowel.add('e'); vowel.add('i'); vowel.add('o'); vowel.add('u'); vowel.add('A'); vowel.add('E'); vowel.add('I'); vowel.add('O'); vowel.add('U'); for (int i = 0; i < words.length; i++) { as += "a"; char first = words[i].charAt(0); if (vowel.contains(first)) { sb.append(words[i]+"ma"+as+" "); } else { sb.append(words[i].substring(1)+first+"ma"+as+" "); } } return sb.toString().trim(); }}

转载地址:http://alfsx.baihongyu.com/

你可能感兴趣的文章
现实迷途 第三十二章 阴晴反复(上)
查看>>
TimerJob无法发布新版本问题
查看>>
测试用例注意点
查看>>
AJAX-让自己看到真正的网页
查看>>
mysql 用户自定义变量
查看>>
wangjunkai
查看>>
点名器
查看>>
学习Selenium遇到的问题和解决方案
查看>>
ubuntu16.04安装python3,idle,pip安装与升级
查看>>
排序函数 sort() 和 高阶函数sorted()
查看>>
人生格言
查看>>
对分组进行添加二级域名
查看>>
TTF字体文件使用
查看>>
antlr
查看>>
Linux查看程序端口占用情况
查看>>
linux快速清空文件 比如log日志
查看>>
Web学习之HTML
查看>>
轻松大幅度降低 Meteor App 的首屏加载时间
查看>>
元类及异常处理
查看>>
cx_Oracle.DatabaseError: DPI-1047: 64-bit Oracle Client library cannot be loaded 解决方法
查看>>