6
6
7
7
<p >You are given an array of strings  ; <code >words</code >  ; and a string  ; <code >chars</code >.</p >
8
8
9
-
10
-
11
9
<p >A string is <em >good</em >  ; if  ; it can be formed by  ; characters from <code >chars</code >  ; (each character  ; can only be used once).</p >
12
10
13
-
14
-
15
11
<p >Return the sum of lengths of all good strings in <code >words</code >.</p >
16
12
17
-
18
-
19
13
<p >  ; </p >
20
14
21
-
22
-
23
15
<p ><strong >Example 1:</strong ></p >
24
16
25
-
26
-
27
17
<pre >
28
18
29
19
<strong >Input: </strong >words = <span id =" example-input-1-1 " >[" ; cat" ; ," ; bt" ; ," ; hat" ; ," ; tree" ; ]</span >, chars = <span id =" example-input-1-2 " >" ; atach" ; </span >
@@ -36,12 +26,8 @@ The strings that can be formed are "cat" and "hat" so the an
36
26
37
27
</pre >
38
28
39
-
40
-
41
29
<p ><strong >Example 2:</strong ></p >
42
30
43
-
44
-
45
31
<pre >
46
32
47
33
<strong >Input: </strong >words = <span id =" example-input-2-1 " >[" ; hello" ; ," ; world" ; ," ; leetcode" ; ]</span >, chars = <span id =" example-input-2-2 " >" ; welldonehoneyr" ; </span >
@@ -54,16 +40,10 @@ The strings that can be formed are "hello" and "world" so th
54
40
55
41
</pre >
56
42
57
-
58
-
59
43
<p >  ; </p >
60
44
61
-
62
-
63
45
<p ><span ><strong >Note:</strong ></span ></p >
64
46
65
-
66
-
67
47
<ol >
68
48
<li><code>1 <= words.length <= 1000</code></li>
69
49
<li><code>1 <= words[i].length, chars.length <= 100</code></li>
@@ -77,13 +57,113 @@ The strings that can be formed are "hello" and "world" so th
77
57
### ** Python3**
78
58
79
59
``` python
80
-
60
+ class Solution :
61
+ def countCharacters (self , words : List[str ], chars : str ) -> int :
62
+ counter = Counter(chars)
63
+ ans = 0
64
+ for word in words:
65
+ cnt = Counter(word)
66
+ if all ([counter[c] >= v for c, v in cnt.items()]):
67
+ ans += len (word)
68
+ return ans
81
69
```
82
70
83
71
### ** Java**
84
72
85
73
``` java
74
+ class Solution {
75
+ public int countCharacters (String [] words , String chars ) {
76
+ int [] counter = count(chars);
77
+ int ans = 0 ;
78
+ for (String word : words) {
79
+ int [] cnt = count(word);
80
+ if (check(counter, cnt)) {
81
+ ans += word. length();
82
+ }
83
+ }
84
+ return ans;
85
+ }
86
+
87
+ private int [] count (String s ) {
88
+ int [] counter = new int [26 ];
89
+ for (char c : s. toCharArray()) {
90
+ ++ counter[c - ' a' ];
91
+ }
92
+ return counter;
93
+ }
94
+
95
+ private boolean check (int [] cnt1 , int [] cnt2 ) {
96
+ for (int i = 0 ; i < 26 ; ++ i) {
97
+ if (cnt1[i] < cnt2[i]) {
98
+ return false ;
99
+ }
100
+ }
101
+ return true ;
102
+ }
103
+ }
104
+ ```
105
+
106
+ ### ** C++**
107
+
108
+ ``` cpp
109
+ class Solution {
110
+ public:
111
+ int countCharacters(vector<string >& words, string chars) {
112
+ vector<int > counter = count(chars);
113
+ int ans = 0;
114
+ for (auto& word : words)
115
+ {
116
+ vector<int > cnt = count(word);
117
+ if (check(counter, cnt)) ans += word.size();
118
+ }
119
+ return ans;
120
+ }
121
+
122
+ vector<int> count(string s) {
123
+ vector<int> counter(26);
124
+ for (char c : s) ++counter[c - 'a'];
125
+ return counter;
126
+ }
127
+
128
+ bool check (vector<int >& cnt1, vector<int >& cnt2) {
129
+ for (int i = 0; i < 26; ++i)
130
+ if (cnt1[ i] < cnt2[ i] ) return false;
131
+ return true;
132
+ }
133
+ };
134
+ ```
86
135
136
+ ### **Go**
137
+
138
+ ```go
139
+ func countCharacters(words []string, chars string) int {
140
+ counter := count(chars)
141
+ ans := 0
142
+ for _, word := range words {
143
+ cnt := count(word)
144
+ if check(counter, cnt) {
145
+ ans += len(word)
146
+ }
147
+ }
148
+ return ans
149
+ }
150
+
151
+ func count(s string) []int {
152
+ counter := make([]int, 26)
153
+ for _, c := range s {
154
+ counter[c-'a']++
155
+ }
156
+ return counter
157
+ }
158
+
159
+ func check(cnt1, cnt2 []int) bool {
160
+ for i := 0; i < 26; i++ {
161
+ if cnt1[i] < cnt2[i] {
162
+ return false
163
+ }
164
+ }
165
+ return true
166
+ }
87
167
```
88
168
89
169
### ** ...**
0 commit comments