Skip to content

Commit b0f5e5e

Browse files
authored
Update 0049-group-anagrams.js
Simplified buildHash with toString function.
1 parent 9da072d commit b0f5e5e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

javascript/0049-group-anagrams.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ const getHash = (word) => {
6868

6969
const getCode = (char) => char.charCodeAt(0) - 'a'.charCodeAt(0);
7070

71-
const buildHash = (frequency) => frequency
72-
.map((count) => `#${count}`)/* Time O(1) | Space (1) */
73-
.join(''); /* Time O(1) | Space (1) */
71+
const buildHash = (frequency) => frequency.toString();
7472

7573

0 commit comments

Comments
 (0)