TN
tejaswini nagala
Component_1 - Copy this React, Tailwind Component to your project
Convert the below code snippet from [python] to [java]: function nonRepeatingWords(str1, str2) { const map = new Map(); const res = []; // Concatenate the strings const str = str1 + " " + str2; // Count the occurrence of each word str.split(" ").forEach((word) => { map.has(word) ? map.set(word, map.get(word) + 1) : map.set(word, 1); }); // Select words which occur only once for (let [key, val] of map) { if (val === 1) { res.push(key); } } return res; }
Prompt
