© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Tapan Rachchh
class Solution: def canConstruct(self, s: str, k: int) -> bool: l = len(s) if l < k: return False if l == k: return True c = Counter(s) oddCount = 0 for e in c: ...
No responses yet.