Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for [old] Common Words by 2fight
"use strict";
function commonWords(first, second) {
return first.split(",").filter(x => second.split(",").includes(x)).sort().toString();
}
var assert = require('assert');
if (!global.is_checking) {
assert.equal(commonWords("hello,world", "hello,earth"), "hello", "Hello");
assert.equal(commonWords("one,two,three", "four,five,six"), "", "Too different");
assert.equal(commonWords("one,two,three", "four,five,one,two,six,three"), "one,three,two", "1 2 3");
console.log("Coding complete? Click 'Check' to review your tests and earn cool rewards!");
}
Aug. 25, 2019
Comments: