Your Submissions
You haven't submitted any code for this challenge yet. Solve the problem by passing all the test cases, and your submissions will appear here.
xxxxxxxxxx
17
var assert = require('assert');
function missingInUnsorted(arr, lowerBound, upperBound) {
// fill in this method
return arr;
}
try {
assert.equal(missingInUnsorted([2, 5, 1, 4, 9, 6, 3, 7], 1, 9), 8);
console.log(
'PASSED: missingInUnsorted([ 2, 5, 1, 4, 9, 6, 3, 7 ], 1, 9) should return 8'
);
} catch (err) {
console.log(err);
}
OUTPUT
Results will appear here.