Created
January 28, 2020 20:32
-
-
Save monostere0/4e9d4fca59e63f494a37a33eb9e919e3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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