@@ -87,21 +87,6 @@ class Solution {
87
87
}
88
88
```
89
89
90
- ### ** TypeScript**
91
-
92
- ``` ts
93
- function isAnagram(s : string , t : string ): boolean {
94
- if (s .length != t .length ) return false ;
95
- let record = new Array (26 ).fill (0 );
96
- let base = ' a' .charCodeAt (0 );
97
- for (let i = 0 ; i < s .length ; ++ i ) {
98
- ++ record [s .charCodeAt (i ) - base ];
99
- -- record [t .charCodeAt (i ) - base ];
100
- }
101
- return record .every (v => v == 0 );
102
- }
103
- ```
104
-
105
90
### ** C++**
106
91
107
92
``` cpp
@@ -165,23 +150,112 @@ var isAnagram = function (s, t) {
165
150
};
166
151
```
167
152
153
+ ### ** TypeScript**
154
+
155
+ ``` ts
156
+ function isAnagram(s : string , t : string ): boolean {
157
+ const n = s .length ;
158
+ const m = t .length ;
159
+ return n === m && [... s ].sort ().join (' ' ) === [... t ].sort ().join (' ' );
160
+ }
161
+ ```
162
+
163
+ ``` ts
164
+ function isAnagram(s : string , t : string ): boolean {
165
+ const n = s .length ;
166
+ const m = t .length ;
167
+ if (n !== m ) {
168
+ return false ;
169
+ }
170
+ const count = new Array (26 ).fill (0 );
171
+ for (let i = 0 ; i < n ; i ++ ) {
172
+ count [s .charCodeAt (i ) - ' a' .charCodeAt (0 )]++ ;
173
+ count [t .charCodeAt (i ) - ' a' .charCodeAt (0 )]-- ;
174
+ }
175
+ return count .every (v => v === 0 );
176
+ }
177
+ ```
178
+
168
179
### ** Rust**
169
180
170
181
``` rust
171
182
impl Solution {
172
183
pub fn is_anagram (s : String , t : String ) -> bool {
173
- if s . len () != t . len () {
184
+ let n = s . len ();
185
+ let m = t . len ();
186
+ if n != m {
174
187
return false ;
175
188
}
176
- let (s , t ) = (s . as_bytes (), t . as_bytes ());
177
- let mut record = [0 ; 26 ];
189
+ let mut s = s . chars (). collect :: <Vec <char >>();
190
+ let mut t = t . chars (). collect :: <Vec <char >>();
191
+ s . sort ();
192
+ t . sort ();
193
+ for i in 0 .. n {
194
+ if s [i ] != t [i ] {
195
+ return false ;
196
+ }
197
+ }
198
+ true
199
+ }
200
+ }
201
+ ```
202
+
203
+ ``` rust
204
+ impl Solution {
205
+ pub fn is_anagram (s : String , t : String ) -> bool {
178
206
let n = s . len ();
207
+ let m = t . len ();
208
+ if n != m {
209
+ return false ;
210
+ }
211
+ let (s , t ) = (s . as_bytes (), t . as_bytes ());
212
+ let mut count = [0 ; 26 ];
179
213
for i in 0 .. n {
180
- record [(s [i ] - b 'a' ) as usize ] += 1 ;
181
- record [(t [i ] - b 'a' ) as usize ] -= 1 ;
214
+ count [(s [i ] - b 'a' ) as usize ] += 1 ;
215
+ count [(t [i ] - b 'a' ) as usize ] -= 1 ;
216
+ }
217
+ count . iter (). all (| & c | c == 0 )
218
+ }
219
+ }
220
+ ```
221
+
222
+ ### ** C**
223
+
224
+ ``` c
225
+ int cmp (const void * a, const void * b) {
226
+ return * (char * ) a - * (char * ) b;
227
+ }
228
+
229
+ bool isAnagram(char * s, char * t) {
230
+ int n = strlen(s);
231
+ int m = strlen(t);
232
+ if (n != m) {
233
+ return 0;
234
+ }
235
+ qsort(s, n, sizeof(char), cmp);
236
+ qsort(t, n, sizeof(char), cmp);
237
+ return !strcmp(s, t);
238
+ }
239
+ ```
240
+
241
+ ```c
242
+ bool isAnagram(char *s, char *t) {
243
+ int n = strlen(s);
244
+ int m = strlen(t);
245
+ if (n != m) {
246
+ return 0;
247
+ }
248
+ int count[26] = {0};
249
+ for (int i = 0; i < n; i++) {
250
+ count[s[i] - 'a']++;
251
+ count[t[i] - 'a']--;
252
+ }
253
+ for (int i = 0; i < 26; i++) {
254
+ if (count[i]) {
255
+ return 0;
182
256
}
183
- record . iter (). all (| & c | c == 0 )
184
257
}
258
+ return 1;
185
259
}
186
260
```
187
261
0 commit comments