Leetcode•Aug 21, 2025
Shortest Completing Word
Hazrat Ali
Leetcode
A completing word is a word that contains all the letters in licensePlate
. Ignore numbers and spaces in licensePlate
, and treat letters as case insensitive. If a letter appears more than once in licensePlate
, then it must appear in the word the same number of times or more.
For example, if licensePlate
= "aBc 12c"
, then it contains letters 'a'
, 'b'
(ignoring case), and 'c'
twice. Possible completing words are "abccdef"
, "caaacab"
, and "cbca"
.
Return the shortest completing word in words
. It is guaranteed an answer exists. If there are multiple shortest completing words, return the first one that occurs in words
.
Example 1:
Input: licensePlate = "1s3 PSt", words = ["step","steps","stripe","stepple"] Output: "steps" Explanation: licensePlate contains letters 's', 'p', 's' (ignoring case), and 't'. "step" contains 't' and 'p', but only contains 1 's'. "steps" contains 't', 'p', and both 's' characters. "stripe" is missing an 's'. "stepple" is missing an 's'. Since "steps" is the only word containing all the letters, that is the answer.
Example 2:
Input: licensePlate = "1s3 456", words = ["looks","pest","stew","show"] Output: "pest" Explanation: licensePlate only contains the letter 's'. All the words contain 's', but among these "pest", "stew", and "show" are shortest. The answer is "pest" because it is the word that appears earliest of the 3.
Solution
/**
* @param {string} licensePlate
* @param {string[]} words
* @return {string}
*/
const shortestCompletingWord = function(licensePlate, words) {
let result = null;
const licenseMap = getCountMap(licensePlate);
for (let word of words) {
const wordMap = getCountMap(word);
if (isMatch(licenseMap, wordMap) && (!result || word.length < result.length)) {
result = word;
}
}
return result;
};
const isMatch = (map1, map2) => {
for (let c of Object.keys(map1)) {
if (!(c in map2) || map2[c] < map1[c]) {
return false;
}
}
return true;
};
const getCountMap = str => {
const map = {};
for (let c of str) {
if (/[a-zA-Z]/.test(c)) {
const key = c.toLowerCase();
map[key] = ~~map[key] + 1;
}
}
return map;
};