Skip to content

Instantly share code, notes, and snippets.

@monostere0
Created January 28, 2020 20:32
Show Gist options
  • Save monostere0/4e9d4fca59e63f494a37a33eb9e919e3 to your computer and use it in GitHub Desktop.
Save monostere0/4e9d4fca59e63f494a37a33eb9e919e3 to your computer and use it in GitHub Desktop.
const assert = require('assert');
function solution(array) {
const k = array.length / 4;
let buffer = [];
return flatten(array.reduce((a, b, i) => {
buffer.push(b);
if (b !== array[i + 1]) {
a.push(buffer);
buffer = [];
}
return a;
}, []).filter(x => x.length === k));
}
function identical(a) {
return a.every(x => x === a[0]);
}
function flatten(a) {
return a.reduce((a, b) => a.concat(b), []);
}
assert.deepEqual(solution([1, 1, 2, 2, 2, 3, 3, 4, 5, 5, 5, 5, 6, 6, 6, 6]), [5, 5, 5, 5, 6, 6, 6, 6]);
assert.deepEqual(solution([1, 1, 2, 3, 4, 5, 6, 7]), [1, 1]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment