Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Clear&Readable solution in Clear category for [old] Common Words by SaintDron
"use strict";
function commonWords(first, second) {
return first.split(',')
.filter(v => second.split(',').includes(v))
.sort()
.join();
}
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!");
}
Feb. 28, 2018
Comments: