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
iandj, wherewords[i]is a non-empty string, and move any character fromwords[i]to any position inwords[j].Return
trueif you can make every string inwords*equal using any number of operations, andfalseotherwise*.
1 | class Solution { |