Skip to content

Commit a81c08d

Browse files
authored
Update 0242-valid-anagram.js
changing space complexity to O(1). It's constant since we keep hashmap of the letters and their frequency, so the size of the hashmao will be the size of the alphabet -> size of 26.
1 parent b98ee99 commit a81c08d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

javascript/0242-valid-anagram.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const reorder = (str) => str
2020

2121
/**
2222
* Hash Map - Frequency Counter
23-
* Time O(N) | Space O(N)
23+
* Time O(N) | Space O(1)
2424
* https://leetcode.com/problems/valid-anagram/
2525
* @param {string} s
2626
* @param {string} t
@@ -30,8 +30,8 @@ var isAnagram = (s, t, map = new Map()) => {
3030
const isEqual = s.length === t.length;
3131
if (!isEqual) return false;
3232

33-
addFrequency(s, map); /* Time O(N) | Space O(N) */
34-
subtractFrequency(t, map); /* Time O(N) | Space O(N) */
33+
addFrequency(s, map); /* Time O(N) | Space O(1) */
34+
subtractFrequency(t, map); /* Time O(N) | Space O(1) */
3535

3636
return checkFrequency(map);/* Time O(N) */
3737
};
@@ -40,7 +40,7 @@ const addFrequency = (str, map) => {
4040
for (const char of str) {/* Time O(N) */
4141
const count = (map.get(char) || 0) + 1;
4242

43-
map.set(char, count); /* Space O(N) */
43+
map.set(char, count); /* Space O(1) */
4444
}
4545
}
4646

@@ -50,7 +50,7 @@ const subtractFrequency = (str, map) => {
5050

5151
const count = map.get(char) - 1;
5252

53-
map.set(char, count); /* Space O(N) */
53+
map.set(char, count); /* Space O(1) */
5454
}
5555
};
5656

@@ -61,4 +61,4 @@ const checkFrequency = (map) => {
6161
}
6262

6363
return true;
64-
}
64+
}

0 commit comments

Comments
 (0)