Skip to content

Commit 21b2939

Browse files
authored
feat: add typescript solution to lc problem: No.0242.Valid Anagram (#526)
1 parent 1ee7391 commit 21b2939

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

solution/0200-0299/0242.Valid Anagram/README.md

+15
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,21 @@ class Solution {
8080
}
8181
```
8282

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+
8398
### **C++**
8499

85100
```cpp

solution/0200-0299/0242.Valid Anagram/README_EN.md

+15
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,21 @@ class Solution {
7272
}
7373
```
7474

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+
7590
### **C++**
7691

7792
```cpp
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
};

0 commit comments

Comments
 (0)