Files
LeetCode_tasks/solutions/lc2828.py
Vombit df1dbfd0ae 4
2026-05-26 15:38:10 +05:00

4 lines
144 B
Python

class Solution:
def isAcronym(self, words: List[str], s: str) -> bool:
return True if s == "".join(i[:1] for i in words) else False