This commit is contained in:
Vombit
2026-05-26 15:38:10 +05:00
parent 352ed5d27c
commit df1dbfd0ae
5 changed files with 116 additions and 29 deletions

3
solutions/lc2828.py Normal file
View 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