编写一个函数,它接受两个字符串并显示(不带双精度)出现在任一字符串中的字符。
function characterOverlap(array1, array2) { let occurrence = {}; let str = array1.concat(array2); // find the count of each character Array.from(str).forEach((char) => { let currentCount = occurrence[char] || 0; occurrence[char] = currentCount + 1; }); // return the keys which is the individual character and join. const result = Object.keys(occurrence); return result.join(""); } console.log(characterOverlap("computer", "circuitemtop")); console.log(characterOverlap("frontend", "development")); console.log(characterOverlap("mivrog", "gormiv")); console.log(characterOverlap("praxet", "xetpar")); console.log(characterOverlap("stone", "tones")); console.log(characterOverlap("rescue", "secure"));
> computer > frontedvlpm > mivrog > praxet > stone > rescu
以上是JavaScript 中字符与字符串重叠的详细内容。更多信息请关注PHP中文网其他相关文章!