其他分享
首页 > 其他分享> > leetcode1768-交替合并字符串

leetcode1768-交替合并字符串

作者:互联网

https://leetcode.cn/problems/merge-strings-alternately/

这题没什么好说的,特别简单。但是也学到了一些点。

1.字符串res和另一个字符串中的某一个字符nums[i]不能通过  res += nums[i];形式添加,否则会报错。要用 res = res + nums[i];

2.字符串添加字符元素用res.push_back(nums[i])比用res = res + nums[i]更快

标签:字符,nums,res,交替,添加,报错,leetcode1768,字符串
来源: https://www.cnblogs.com/uacs2024/p/16658138.html