Medium
Rearrange K Substrings to Form Target String — Python
Full explanation · Time O(n) · Space O(n)
# Time: O(n)
# Space: O(n)
import collections
# freq table
class Solution(object):
def isPossibleToRearrange(self, s, t, k):
"""
:type s: str
:type t: str
:type k: int
:rtype: bool
"""
cnt = collections.defaultdict(int)
l = len(s)//k
for i in xrange(0, len(s), l):
cnt[s[i:i+l]] += 1
cnt[t[i:i+l]] -= 1
return all(v == 0 for v in cnt.itervalues())