题解 | #找出字符串中第一个只出现一次的字符#

找出字符串中第一个只出现一次的字符

https://www.nowcoder.com/practice/e896d0f82f1246a3aa7b232ce38029d4

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()){
        let tokens = line.split('');
        const res = []
        for(let c of tokens){
            const index = res.findIndex(item=>item[0] === c)
            if(index != -1) res[index][1]++
            else res.push([c,1])
        }
        // 找出第一个出现且只出现一次的
        const index = res.findIndex(item=>item[1] === 1)
        console.log(index === -1 ? index : res[index][0])
    }
}()

全部评论

相关推荐

05-22 09:23
门头沟学院 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务