当前位置:网站首页>leetcode-520. 检测大写字母-js

leetcode-520. 检测大写字母-js

2022-07-07 21:50:00 前端千帆

题目在这里插入图片描述

代码

/** * @param {string} word * @return {boolean} */
var detectCapitalUse = function(word) {
    
    // 只有一个字母,不管大小写都返回 true
    if (word.length === 1) return true

    const upperStr = word.toUpperCase()
    const lowerStr = word.toLowerCase()
    if (word === upperStr || word === lowerStr) {
    
        // 当全部字母都是大写或者小写时
        return true;
    } else if (word[0] <= 'Z' && word[0] >= 'A' && word.slice(1) === lowerStr.slice(1)) {
    
        // 当首字母是大写,其他字母都是小写时
        return true
    }

    return false
};
原网站

版权声明
本文为[前端千帆]所创,转载请带上原文链接,感谢
https://blog.csdn.net/weixin_44335776/article/details/125588399