We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9da072d commit b0f5e5eCopy full SHA for b0f5e5e
javascript/0049-group-anagrams.js
@@ -68,8 +68,6 @@ const getHash = (word) => {
68
69
const getCode = (char) => char.charCodeAt(0) - 'a'.charCodeAt(0);
70
71
-const buildHash = (frequency) => frequency
72
- .map((count) => `#${count}`)/* Time O(1) | Space (1) */
73
- .join(''); /* Time O(1) | Space (1) */
+const buildHash = (frequency) => frequency.toString();
74
75
0 commit comments