Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for [old] Find Sequence by vincent.tscherter
"use strict";
function sequence(m) {
let row = y => m[y].join('');
let col = x => m.map(r => r[x]).join('');
let nwse = (x,y) => { let o = ''; while (m[y] && m[y][x]) o += m[y++][x++]; return o; };
let nesw = (x,y) => { let o = ''; while (m[y] && m[y][x]) o += m[y++][x--]; return o; };
let test = /(.)\1{3}/
for (let i = 0; i
July 29, 2018