#648. Replace Words

Karleb - Jun 7 - - Dev Community

https://leetcode.com/problems/replace-words/description/?envType=daily-question&envId=2024-06-07


/**
 * @param {string[]} dictionary
 * @param {string} sentence
 * @return {string}
 */
var replaceWords = function(dictionary, sentence) {
    sentence = sentence.split(" ")

    for (let i = 0; i < sentence.length; i++) {
        for (let j = 0; j < dictionary.length; j++) {
            if (sentence[i].startsWith(dictionary[j])) {
                sentence[i] = dictionary[j]
            }
        }
    }

    return sentence.join(" ")
};

Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .