Skip to content

Commit 88ea0f2

Browse files
authored
Add less verbose solution
Add another solution with hashmap instead of arrays for storing the count
1 parent 9a8f8ba commit 88ea0f2

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

javascript/0424-longest-repeating-character-replacement.js

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
/**
2+
* https://leetcode.com/problems/longest-repeating-character-replacement/
3+
* Time O(((N + 26) * N) * (M - N)) | Space O(1)
4+
* @param {string} s
5+
* @param {number} k
6+
* @return {number}
7+
*/
8+
var characterReplacement = function(s, k) {
9+
let res = 0;
10+
let count = new Map();
11+
let l = 0;
12+
13+
for (let r = 0; r < s.length; r++) {
14+
let len = r - l + 1
15+
count.set(s[r], 1 + (count.get(s[r]) || 0))
16+
17+
if ((len - Math.max(...count.values())) > k) {
18+
count.set(s[l], count.get(s[l]) - 1)
19+
l++;
20+
}
21+
len = r - l + 1;
22+
res = Math.max(res, len)
23+
}
24+
25+
return res;
26+
};
27+
128
/**
229
* https://leetcode.com/problems/longest-repeating-character-replacement/
330
* Time O(((N + 26) * N) * (M - N)) | Space O(1)

0 commit comments

Comments
 (0)