반응형
https://leetcode.com/problems/redistribute-characters-to-make-all-strings-equal
words의 모든 문자의 개수를 구해주고, 각 문자가 words의 길이로 나누어 떨어지는지 확인해줍니다.
class Solution {
public:
bool makeEqual(vector<string>& words) {
int cnt[26] = {0};
for(string& w : words) {
for(char c : w) {
cnt[c - 'a']++;
}
}
for(int i=0; i<26; i++) {
if(cnt[i] % words.size() != 0) {
return false;
}
}
return true;
}
};
반응형
'Algorithm' 카테고리의 다른 글
LeetCode 455. Assign Cookies (0) | 2024.01.01 |
---|---|
LeetCode 1624. Largest Substring Between Two Equal Characters (1) | 2023.12.31 |
LeetCode 1335. Minimum Difficulty of a Job Schedule (0) | 2023.12.29 |
LeetCode 1155. Number of Dice Rolls With Target Sum (0) | 2023.12.27 |
LeetCode 91. Decode Ways (0) | 2023.12.25 |