-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy path2451-odd-string-difference.js
More file actions
53 lines (49 loc) · 1.47 KB
/
2451-odd-string-difference.js
File metadata and controls
53 lines (49 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* 2451. Odd String Difference
* https://leetcode.com/problems/odd-string-difference/
* Difficulty: Easy
*
* You are given an array of equal-length strings words. Assume that the length of each
* string is n.
*
* Each string words[i] can be converted into a difference integer array difference[i] of
* length n - 1 where difference[i][j] = words[i][j+1] - words[i][j] where 0 <= j <= n - 2.
* Note that the difference between two letters is the difference between their positions in
* the alphabet i.e. the position of 'a' is 0, 'b' is 1, and 'z' is 25.
* - For example, for the string "acb", the difference integer array is [2 - 0, 1 - 2] = [2, -1].
*
* All the strings in words have the same difference integer array, except one. You should find
* that string.
*
* Return the string in words that has different difference integer array.
*/
/**
* @param {string[]} words
* @return {string}
*/
var oddString = function(words) {
const map = new Map();
for (const word of words) {
const diff = getDiff(word);
map.set(diff, (map.get(diff) || 0) + 1);
}
let oddDiff;
for (const [diff, count] of map) {
if (count === 1) {
oddDiff = diff;
break;
}
}
for (const word of words) {
if (getDiff(word) === oddDiff) {
return word;
}
}
function getDiff(word) {
const diff = [];
for (let i = 1; i < word.length; i++) {
diff.push(word.charCodeAt(i) - word.charCodeAt(i - 1));
}
return diff.join(',');
}
};