首页 > TAG信息列表 > leetcode1768
leetcode1768-交替合并字符串
https://leetcode.cn/problems/merge-strings-alternately/ 这题没什么好说的,特别简单。但是也学到了一些点。 1.字符串res和另一个字符串中的某一个字符nums[i]不能通过 res += nums[i];形式添加,否则会报错。要用 res = res + nums[i]; 2.字符串添加字符元素用res.push_back(nleetcode1768-交替合并字符串
https://leetcode.cn/problems/merge-strings-alternately/ 这题没什么好说的,特别简单。但是也学到了一些点。 1.字符串res和另一个字符串中的某一个字符nums[i]不能通过 res += nums[i];形式添加,否则会报错。要用 res = res + nums[i]; 2.字符串添加字符元素用res.push_back(n