1897. Redistribute Characters to Make All Strings Equal
You are given an array of strings
words
(0-indexed).In one operation, pick two distinct indices
i
andj
, wherewords[i]
is a non-empty string, and move any character fromwords[i]
to any position inwords[j]
.Return
true
if you can make every string inwords
*equal using any number of operations, andfalse
otherwise*.
1 | class Solution { |