#greedy
Read more stories on Hashnode
Articles with this tag
class Solution: def canConstruct(self, s: str, k: int) -> bool: l = len(s) if l < k: return False if l ==...