4
This commit is contained in:
3
solutions/lc2828.py
Normal file
3
solutions/lc2828.py
Normal file
@@ -0,0 +1,3 @@
|
||||
class Solution:
|
||||
def isAcronym(self, words: List[str], s: str) -> bool:
|
||||
return True if s == "".join(i[:1] for i in words) else False
|
||||
Reference in New Issue
Block a user