LeetCode 500 键盘行[遍历] HERODING的LeetCode之路

Posted HERODING23

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 500 键盘行[遍历] HERODING的LeetCode之路相关的知识,希望对你有一定的参考价值。


解题思路:
其实只要给每个字母标签一下就完事了,26个英文字母用行号0,1,2标注,然后遍历的时候看是否标注相同,相同则在同一行,否则不在,代码如下:

class Solution {
public:
    vector<string> findWords(vector<string>& words) {
        vector<string> ans;
        string rowIdx = "12210111011122000010020202";
        for (auto & word : words) {
            bool isValid = true;
            char idx = rowIdx[tolower(word[0]) - 'a'];
            for (int i = 1; i < word.size(); ++i) {
                if(rowIdx[tolower(word[i]) - 'a'] != idx) {
                    isValid = false;
                    break;
                }
            }
            if (isValid) {
                ans.emplace_back(word);
            }
        }
        return ans;
    }
};

以上是关于LeetCode 500 键盘行[遍历] HERODING的LeetCode之路的主要内容,如果未能解决你的问题,请参考以下文章

leetcode500. 键盘行

python leetcode练习(500.键盘行)

力扣(LeetCode)500. 键盘行

Leetcode——500. 键盘行(Java)

LeetCode 500. Keyboard Row (键盘行)

leetcode 500. 键盘行(Keyboard Row)