特仑苏_Julie level
获赞
2
粉丝
2
关注
1
看过 TA
179
重庆邮电大学
2024
前端工程师
IP属地:重庆
球球来个公司收留俺吧,俺啥都能学
私信
关注
求助,今天做的一个笔试题:求字符串中出现多次字母和数字的次数,本来很简单的题,为什么牛客上就是不通过?我的代码:/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param str string字符串 * @return int整型 */function maxCount(str) {    // 我的代码没问题,不知道为什么通过不了用例,可否解答?    let count = {};    let lowerStr = str.toLowerCase();    if (str.length == 0 || str == "") {        return 0;    }    if (str.length == 1) {        return 1;    }    for (let i = 0; i         let c = lowerStr[i]; if ((c >= "a" && c = "0" && c             if (count[c]) {                count[c]++;            } else {                count[c] = 1;            }        }    }    let res = 0;    for (let c in count) { if (count[c] > 1) {            res = Math.max(count[c], res);        }    }    return res;}
投递牛客等公司
0 点赞 评论 收藏
分享
关注他的用户也关注了:
牛客网
牛客企业服务