1768. 交替合并字符串
Posted 心脏dance
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1768. 交替合并字符串相关的知识,希望对你有一定的参考价值。
题目链接:力扣
思路:做个水题放松下!for循环一遍即可,不过多解释了,直接看代码。
上代码:
import kotlin.math.max
class Solution
fun mergeAlternately(word1: String, word2: String): String
var result = ""
for (index in 0 until max(word1.length, word2.length))
if (index < word1.length)
result += word1[index]
if (index < word2.length)
result += word2[index]
return result
以上是关于1768. 交替合并字符串的主要内容,如果未能解决你的问题,请参考以下文章