This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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 = [5 1 3 9 32 24];
elements = [1 2 3 4 5 6 7 8 9 24 25 26 27 28 29 30 31 32];
assert(isequal(ExpandIntervals(bounds),elements))
|
3 | Pass |
bounds = [11 11 9 9];
elements = [9 11];
assert(isequal(ExpandIntervals(bounds),elements))
|
4 | Pass |
bounds = [200 400 300 100];
elements = [100:400];
assert(isequal(ExpandIntervals(bounds),elements))
|
5 | Pass |
temp = [-11:1.1:9; -9:9.5];
bounds = temp(:)';
elements = -11:9;
assert(isequal(ExpandIntervals(bounds),elements))
|
6 | Pass |
temp = [-11:1.21:11; -8.7:10];
bounds = temp(:)';
elements = [-11:0, 7:10];
assert(isequal(ExpandIntervals(bounds),elements))
|
7 | Pass |
temp = [-11:2.599:9; -9:2.601:11];
bounds = temp(:)';
elements = [-11:-7, -5:-2, 0:6, 8:9];
assert(isequal(ExpandIntervals(bounds),elements))
|
8 | Pass |
bounds = [-10.8 10.9];
elements = -10:10;
assert(isequal(ExpandIntervals(bounds),elements))
|
9 | Pass |
bounds = [10.8 -10.9];
elements = -10:10;
assert(isequal(ExpandIntervals(bounds),elements))
|
10762 Solvers
Get the area codes from a list of phone numbers
417 Solvers
Who knows the last digit of pi?
488 Solvers
138 Solvers
47 Solvers