Class Solution
-
- All Implemented Interfaces:
public final class Solution1897 - Redistribute Characters to Make All Strings Equal.
Easy
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 inwordsequal using any number of operations, andfalseotherwise.Example 1:
Input: words = "abc","aabc","bc"
Output: true
Explanation: Move the first 'a' in
words[1] to the front of words[2], to makewords[1]= "abc" and words2 = "abc".All the strings are now equal to "abc", so return
true.Example 2:
Input: words = "ab","a"
Output: false
Explanation: It is impossible to make all the strings equal using the operation.
Constraints:
1 <= words.length <= 1001 <= words[i].length <= 100words[i]consists of lowercase English letters.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-