500. 键盘行模拟

Posted 幽殇默

tags:

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


https://leetcode-cn.com/problems/keyboard-row/

class Solution {
public:
    vector<string> findWords(vector<string>& ve) 
    {
        string s[3]={"qwertyuiop","asdfghjkl","zxcvbnm"};
        vector<string>ans;
        for(int i=0;i<ve.size();i++)
        {
            set<int>st;
            for(int j=0;j<ve[i].size();j++)
            {
                for(int k=0;k<3;k++) 
                    if(s[k].find(tolower(ve[i][j]))!=-1) st.insert(k);
            }
            if(st.size()==1) ans.push_back(ve[i]);
        }
        return ans;
    }
};

以上是关于500. 键盘行模拟的主要内容,如果未能解决你的问题,请参考以下文章

leetcode打卡——500. 键盘行

500-键盘行

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

500. 键盘行

LeetCode-500-键盘行

力扣(LeetCode)500. 键盘行