求大佬们教js这道题目怎么复制答案
全部评论
改成这样:
const rl = require("readline").createInterface({ input: process.stdin });
var iter = rl[Symbol.asyncIterator]();
const readline = async () => (await iter.next()).value;
void (async function () {
// Write your code here
const str = await readline();
const inarr = str.split("");
const arr = [];
for (let i = 0, l = inarr.length; i < l; i++) {
const item = inarr[i];
if (i > 0 && item === arr[arr.length - 1]) {
arr.pop();
} else {
arr.push(item);
}
}
if (arr.length > 0) {
console.log(arr.join(""));
} else {
console.log(0);
}
})();
蹲个答案,学习一下
相关推荐
11-22 18:10
四川大学 其他机械职位 听说改个名字就能拿offer_快来快来:啊?这样不是很正常吗,每个人都有自己的思维模式,以最小的代价去获取最高的回报,挺好啊感觉
点赞 评论 收藏
分享