We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4706af commit 527812aCopy full SHA for 527812a
my-submissions/e1935.py
@@ -0,0 +1,3 @@
1
+class Solution:
2
+ def canBeTypedWords(self, text: str, brokenLetters: str) -> int:
3
+ return sum(all(c not in brokenLetters for c in s) for s in text.split())
0 commit comments