题目:

题解:
class Solution:
    def findWords(self, words: List[str]) -> List[str]:
        ans = []
        rowIdx = "12210111011122000010020202"
        for word in words:
            idx = rowIdx[ord(word[0].lower()) - ord('a')]
            if all(rowIdx[ord(ch.lower()) - ord('a')] == idx for ch in word):
                ans.append(word)
        return ans









![[bug] vllm 0.6.1 RuntimeError: operator torchvision::nms does not exist](https://i-blog.csdnimg.cn/direct/9158c39dc86e44e2a11ce5366fbfc8cb.png)








