Find the minimum length word from a given dictionary words, which has all the letters from the string licensePlate. Such a word is said to complete the given string licensePlate
Here, for letters we ignore case. For example, "P" on the licensePlate still matches "p" on the word.
It is guaranteed an answer exists. If there are multiple answers, return the one that occurs first in the array.
The license plate might have the same letter occurring multiple times. For example, given a licensePlate of "PP", the word "pair" does not complete the licensePlate, but the word "supper" does.
Example 1:
Input: licensePlate = "1s3 PSt", words = ["step", "steps", "stripe", "stepple"] Output: "steps" Explanation: The smallest length word that contains the letters "S", "P", "S", and "T". Note that the answer is not "step", because the letter "s" must occur in the word twice. Also note that we ignored case for the purposes of comparing whether a letter exists in the word.
Example 2:
Input: licensePlate = "1s3 456", words = ["looks", "pest", "stew", "show"] Output: "pest" Explanation: There are 3 smallest length words that contains the letters "s". We return the one that occurred first.
Note:
licensePlatewill be a string with length in range[1, 7].licensePlatewill contain digits, spaces, or letters (uppercase or lowercase).wordswill have a length in the range[10, 1000].- Every
words[i]will consist of lowercase letters, and have length in range[1, 15].
/*** @param {string} licensePlate* @param {string[]} words* @return {string}*/var shortestCompletingWord = function (licensePlate, words) {let m = {};for (let i = 0; i < licensePlate.length; i++) {let c = licensePlate[i].toLowerCase();if (!isNaN(c)) continue;m[c] = m[c] ? ++m[c] : 1;}let res = "";for (let i in words) {let str = words[i];if (isMatch(m, str) && (str.length < res.length || res == "")) {res = str;}}return res;};var isMatch = (m, s) => {let newM = {};for (let i = 0; i < s.length; i++) {let c = s[i].toLowerCase();if (!isNaN(c)) continue;newM[c] = newM[c] ? ++newM[c] : 1;}for (let i in m) {if (!newM[i] || m[i] > newM[i]) {return false;}}return true;}let licensePlate = "GrC8950";let words = ["measure", "other", "every", "base", "according", "level", "meeting", "none", "marriage", "rest"];console.log(shortestCompletingWord(licensePlate, words));
转载于:https://www.cnblogs.com/xiejunzhao/p/8083018.html
最后
以上就是烂漫过客最近收集整理的关于748. Shortest Completing Word 最短的匹配单词的全部内容,更多相关748.内容请搜索靠谱客的其他文章。
发表评论 取消回复