Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
bounds = [1 5 3 9 24 32];
elements = [1 2 3 4 5 6 7 8 9 24 25 26 27 28 29 30 31 32];
assert(isequal(ExpandIntervals(bounds),elements))
|
2 | Pass |
bounds = [11 11 9 9];
elements = [9 11];
assert(isequal(ExpandIntervals(bounds),elements))
|
3 | Pass |
bounds = [200 400 100 300];
elements = [100:400];
assert(isequal(ExpandIntervals(bounds),elements))
|
4 | Pass |
temp = [-10:9; -9:10];
bounds = temp(:)';
elements = -10:10;
assert(isequal(ExpandIntervals(bounds),elements))
|
5 | Pass |
bounds = [-10 10];
elements = -10:10;
assert(isequal(ExpandIntervals(bounds),elements))
|
17210 Solvers
Determine if a Given Number is a Triangle Number
322 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
Matrix with different incremental runs
249 Solvers
364 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!