Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/HuberTRoy/leetCode
/ letter_all_lower
Method
letter_all_lower
String/DetectCapital.py:81–85 ·
view source on GitHub ↗
(self, word)
Source
from the content-addressed store, hash-verified
79
return
True
80
81
def
letter_all_lower(self, word):
82
for
i in word:
83
if
not 97 <= ord(i) <= 122:
84
return
False
85
return
True
86
Callers
1
detectCapitalUse
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected