Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for [old] Three Words by UFO665
"use strict";
function threeWords(data) {
var result = data.split(" ").map(function(elem) {
return parseInt(elem) ? "0" : "1";
});
return result.join("").indexOf("111") !== -1;
}
Sept. 22, 2018
Comments: