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 |
x = [0 5; 10 3; 20 15; 16 19; 25 25];
y_correct = [0 10;15 20;25 25];
assert(isequal(joinRanges(x),y_correct))
x =
0 5
3 10
15 20
16 19
25 25
x =
0 5
3 10
15 19
16 20
25 25
|
2 | Pass |
x = [-10 -5; 0 -8; -1 5];
y_correct = [-10 5];
assert(isequal(joinRanges(x),y_correct))
x =
-10 -5
-8 0
-1 5
x =
-10 -5
-8 0
-1 5
|
3 | Pass |
x = [-50 0; 0 50; 100 50; -50 -100];
y_correct = [-100 100];
assert(isequal(joinRanges(x),y_correct))
x =
-50 0
0 50
50 100
-100 -50
x =
-100 -50
-50 0
0 50
50 100
|
4 | Pass |
x = [99 51; -49 -1; -51 -99; 1 49];
y_correct = [-99 -51;-49 -1;1 49;51 99];
assert(isequal(joinRanges(x),y_correct))
x =
51 99
-49 -1
-99 -51
1 49
x =
-99 -51
-49 -1
1 49
51 99
|
5 | Pass |
x = [-inf inf];
y_correct = x;
assert(isequal(joinRanges(x),y_correct))
x =
-Inf Inf
x =
-Inf Inf
|
6 | Pass |
x = [0 -42; -inf -10; inf 42];
y_correct = [-Inf 0;42 Inf];
assert(isequal(joinRanges(x),y_correct))
x =
-42 0
-Inf -10
42 Inf
x =
-Inf -10
-42 0
42 Inf
|
7 | Pass |
x = [36.154 63.178; 12.007 -5.156; -0.519 17.651];
y_correct = [-5.156 17.651;36.154 63.178];
assert(isequal(joinRanges(x),y_correct))
x =
36.1540 63.1780
-5.1560 12.0070
-0.5190 17.6510
x =
-5.1560 12.0070
-0.5190 17.6510
36.1540 63.1780
|
8 | Pass |
assert(isempty(strfind(evalc('type joinRanges'), 'regexp')));
|
1800 Solvers
134 Solvers
309 Solvers
2810 Solvers
207 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!