每日一题——山羊拉丁文

简介: 每日一题——山羊拉丁文

824. 山羊拉丁文

题目描述:

给你一个由若干单词组成的句子 sentence ,单词间由空格分隔。每个单词仅由大写和小写英文字母组成。

请你将句子转换为 “山羊拉丁文(Goat Latin,返回将 sentence 转换为山羊拉丁文后的句子。

山羊拉丁文的规则如下:

如果单词以元音开头(‘a’, ‘e’, ‘i’, ‘o’, ‘u’),在单词后添加"ma"。

例如,单词 “apple” 变为 “applema” 。

如果单词以辅音字母开头(即,非元音字母),移除第一个字符并将它放到末尾,之后再添加"ma"。

例如,单词 “goat” 变为 “oatgma” 。

根据单词在句子中的索引,在单词最后添加与索引相同数量的字母’a’,索引从 1 开始。

例如,在第一个单词后添加 “a” ,在第二个单词后添加 “aa” ,以此类推。

示例1:

输入:sentence = “I speak Goat Latin”

输出:“Imaa peaksmaaa oatGmaaaa atinLmaaaaa”

示例2:

输入:sentence = “The quick brown fox jumped over the lazy dog”

输出:“heTmaa uickqmaaa rownbmaaaa oxfmaaaaa umpedjmaaaaaa overmaaaaaaa hetmaaaaaaaa azylmaaaaaaaaa ogdmaaaaaaaaaa”

题解:

func toGoatLatin(sentence string) string {
  assistStr := "aeiouAEIOU"
  words := strings.Split(sentence, " ")
  ansSlice:=make([]string,len(words))
  // 遍历words,对应的i,同样也是变化后的word在ansSlice切片中的位置
  for i, word := range words {
    index := i + 1
    if strings.Contains(assistStr, string(word[0])) {
      word = addA(word+"ma", index)
      ansSlice[i] = word
      continue
    } else {
      word = addA(word[1:]+string(word[0])+"ma", index)
      ansSlice[i] = word
      continue
    }
  }
  return strings.Join(ansSlice," ")
}
// word后追加a,index是多少,追加几个“a”
func addA(word string, index int) string {
  for i := 0; i < index; i++ {
    word = word + "a"
  }
  return word
}

提交结果:

相关文章
|
1月前
|
算法
AcWing 1343. 挤牛奶(每日一题)
AcWing 1343. 挤牛奶(每日一题)
|
1月前
lanqiao OJ 182 小朋友崇拜圈
lanqiao OJ 182 小朋友崇拜圈
29 2
|
1月前
|
算法
AcWing 1355. 母亲的牛奶(每日一题)
AcWing 1355. 母亲的牛奶(每日一题)
|
6月前
|
存储
每日一题——leetcode682.棒球比赛
每日一题——leetcode682.棒球比赛
|
Cloud Native
【刷题日记】824. 山羊拉丁文
本次刷题日记的第 40 篇,力扣题为:【刷题日记】824. 山羊拉丁文 ,简单
|
6月前
滑雪(蓝桥模拟赛的题)
滑雪(蓝桥模拟赛的题)
56 0
|
11月前
滑雪(也是蓝桥模拟赛的题)
和蓝桥杯模拟赛的最大连通过差不多一个思想
48 0
【洛谷】独自一人听歌写题
【洛谷】独自一人听歌写题
73 0
|
存储 算法 索引
LeetCode——824. 山羊拉丁文
LeetCode——824. 山羊拉丁文
87 0
LeetCode——824. 山羊拉丁文
|
存储
【蓝桥杯集训·每日一题】AcWing 4309. 消灭老鼠
文章目录 一、题目 1、原题链接 2、题目描述 二、解题报告 1、思路分析 2、时间复杂度 3、代码详解 三、知识风暴 最大公约数
89 0
下一篇
无影云桌面