There was an error while loading. Please reload this page.
Examine if there are no duplicate values.
Similar: [unique], isUnique.
function isUnique(x, fc, fm) // x: a sorted array // fc: compare function (a, b) // fm: map function (v, i, x)
const xsortedArray = require('extra-sorted-array'); var x = [10, 20, 20, 40, 40, 80]; xsortedArray.isUnique(x); // → false var y = [10, 20, 30, 40, 80] xsortedArray.isUnique(y); // → true