You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.1 KiB
61 lines
1.1 KiB
'use strict'; |
|
|
|
const _ = require('lodash'); |
|
|
|
/** |
|
* |
|
* @param {string[][]} areas |
|
* @param {string} name |
|
* @returns {boolean} |
|
*/ |
|
function isContiguousAndRectangular(areas, name) { |
|
const indicesByRow = areas.map((row) => { |
|
const indices = []; |
|
let idx = row.indexOf(name); |
|
|
|
while (idx !== -1) { |
|
indices.push(idx); |
|
idx = row.indexOf(name, idx + 1); |
|
} |
|
|
|
return indices; |
|
}); |
|
|
|
for (let i = 0; i < indicesByRow.length; i++) { |
|
for (let j = i + 1; j < indicesByRow.length; j++) { |
|
if (indicesByRow[i].length === 0 || indicesByRow[j].length === 0) { |
|
continue; |
|
} |
|
|
|
if (!_.isEqual(indicesByRow[i], indicesByRow[j])) { |
|
return false; |
|
} |
|
} |
|
} |
|
|
|
return true; |
|
} |
|
|
|
/** |
|
* |
|
* @param {string[][]} areas |
|
* @returns {string[]} |
|
*/ |
|
function namedAreas(areas) { |
|
const names = new Set(_.flatten(areas)); |
|
|
|
names.delete('.'); |
|
|
|
return Array.from(names); |
|
} |
|
|
|
/** |
|
* |
|
* @param {string[][]} areas |
|
* @returns {string[]} |
|
*/ |
|
function findNotContiguousOrRectangular(areas) { |
|
return namedAreas(areas).filter((name) => !isContiguousAndRectangular(areas, name)); |
|
} |
|
|
|
module.exports = findNotContiguousOrRectangular;
|
|
|