题解 | #删除字符串中出现次数最少的字符#

删除字符串中出现次数最少的字符

https://www.nowcoder.com/practice/05182d328eb848dda7fdd5e029a56da9

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
  while ((line = await readline())) {
    const countMap = new Map();
    // 获取各个字符串的计数
    for (let i = 0; i < line.length; i++) {
      const char = line[i];
      if (!countMap.has(char)) {
        countMap.set(char, 1);
      } else {
        countMap.set(char, countMap.get(char) + 1);
      }
    }
    // 找出最小的那个 迭代 Map
    const entries = Array.from(countMap.entries()).sort((a, b) => a[1] - b[1]);
    // 有重复
    const [_, minCount] = entries[0];
    for (const entry of entries) {
      if (entry[1] === minCount) {
        line = line.replace(new RegExp(entry[0], "g"), "");
        continue;
      }
      break;
    }
    console.log(line);
  }

})();

全部评论

相关推荐

头像
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务