标签:for target sub bst codec org index ons 首字母
freecodecamp上的算法题:
把指定的字符串翻译成 pig latin。
Pig Latin 把一个英文单词的第一个辅音或辅音丛(consonant cluster)移到词尾,然后加上后缀 "ay"。
如果单词以元音开始,你只需要在词尾添加 "way" 就可以了。
代码:
function translate(str) {
var vowel = ["a", "e", "i", "o", "u"];
if (vowel.indexOf(str[0]) != -1) {
return str + "way";
}
while (vowel.indexOf(str[0]) == -1) {
str = str.substr(1) + str.substr(0, 1);
}
return str + "ay";
}
translate("consonant");
测试:
translate("california")
应该返回 "aliforniacay"。 translate("paragraphs")
应该返回 "aragraphspay"。translate("glove")
应该返回 "oveglay"。translate("algorithm")
应该返回 "algorithmway"。translate("eight")
应该返回 "eightway"。标签:for target sub bst codec org index ons 首字母
原文地址:http://www.cnblogs.com/lee-xiumei/p/6632042.html