-
Notifications
You must be signed in to change notification settings - Fork 5
group
Subhajit Sahu edited this page May 19, 2020
·
25 revisions
Breaks array keeping similar values together. 🏃 📼 📦 🌔
array.group(x, [fn]);
// x: an array
// fn: compare function (a, b)
const array = require('extra-array');
var x = [1, 2, 2, -2, -2, 4];
array.group(x);
// [ [ 1 ], [ 2, 2 ], [ -2, -2 ], [ 4 ] ]
array.group(x, (a, b) => Math.abs(a) - Math.abs(b));
// [ [ 1 ], [ 2, 2, -2, -2 ], [ 4 ] ]
array.group(x, null, v => Math.abs(v));
// [ [ 1 ], [ 2, 2, -2, -2 ], [ 4 ] ]