Search posts, tags, users, and pages
Tapan Rachchh
class Solution: def commonChars(self, words: List[str]) -> List[str]: d = defaultdict(int) for e in words[0]: d[e] += 1 for word in words: c = Counter(word) for e in d.keys(): ...
No responses yet.