ldm-partition
v1.0.0
Published
Largest differencing method
Downloads
41
Maintainers
Readme
JavaScript implementation for largest differencing method
Implementation based on algorithm invented by Narendra Karmarkar and Richard M. Karp.
Install
npm install ldm-partition
Usage
import partition from 'ldm-partition';
partition([8, 7, 6, 5, 4], 2);
//=> [[4, 7, 5], [8, 6]]
partition([{ x: 2 }, { x: 4 }], 2, (d) => d.x));
//=> [[{ x: 4 }], [{ x: 2 }]]