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

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

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('');
        let arr = [];
        for(let i = 0; i< tokens.length; i++) {
            let oriInx = tokens.indexOf(tokens[i]);
            if(oriInx == i) {
                arr.push(tokens[i]);
            } else {
                let inx = arr.indexOf(tokens[i]);
                arr.splice(inx, 1);
            }
        }
        console.log(arr[0] || -1);
    }
}()

#华为机试题#
华为机试题 文章被收录于专栏

华为机试题

全部评论

相关推荐

10-15 09:13
已编辑
天津大学 soc前端设计
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务