File tree 3 files changed +40
-0
lines changed
solution/0200-0299/0242.Valid Anagram
3 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,21 @@ class Solution {
80
80
}
81
81
```
82
82
83
+ ### ** TypeScript**
84
+
85
+ ``` ts
86
+ function isAnagram(s : string , t : string ): boolean {
87
+ if (s .length != t .length ) return false ;
88
+ let record = new Array (26 ).fill (0 );
89
+ let base = ' a' .charCodeAt (0 );
90
+ for (let i = 0 ; i < s .length ; ++ i ) {
91
+ ++ record [s .charCodeAt (i ) - base ];
92
+ -- record [t .charCodeAt (i ) - base ];
93
+ }
94
+ return record .every (v => v == 0 );
95
+ };
96
+ ```
97
+
83
98
### ** C++**
84
99
85
100
``` cpp
Original file line number Diff line number Diff line change @@ -72,6 +72,21 @@ class Solution {
72
72
}
73
73
```
74
74
75
+ ### ** TypeScript**
76
+
77
+ ``` ts
78
+ function isAnagram(s : string , t : string ): boolean {
79
+ if (s .length != t .length ) return false ;
80
+ let record = new Array (26 ).fill (0 );
81
+ let base = ' a' .charCodeAt (0 );
82
+ for (let i = 0 ; i < s .length ; ++ i ) {
83
+ ++ record [s .charCodeAt (i ) - base ];
84
+ -- record [t .charCodeAt (i ) - base ];
85
+ }
86
+ return record .every (v => v == 0 );
87
+ };
88
+ ```
89
+
75
90
### ** C++**
76
91
77
92
``` cpp
Original file line number Diff line number Diff line change
1
+ function isAnagram ( s : string , t : string ) : boolean {
2
+ if ( s . length != t . length ) return false ;
3
+ let record = new Array ( 26 ) . fill ( 0 ) ;
4
+ let base = 'a' . charCodeAt ( 0 ) ;
5
+ for ( let i = 0 ; i < s . length ; ++ i ) {
6
+ ++ record [ s . charCodeAt ( i ) - base ] ;
7
+ -- record [ t . charCodeAt ( i ) - base ] ;
8
+ }
9
+ return record . every ( v => v == 0 ) ;
10
+ } ;
You can’t perform that action at this time.
0 commit comments