Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = [1 2 3 4];
t = 0;
b_correct = [4 3 2 1];
assert(isequal(targetSort(a,t),b_correct))
c =
4 3 2 1
ans =
4 3 2 1
|
2 | Pass |
%%
a = -4:10;
t = 3.6;
b_correct = [-4 -3 10 -2 9 -1 8 0 7 1 6 2 5 3 4];
assert(isequal(targetSort(a,t),b_correct))
c =
1 2 15 3 14 4 13 5 12 6 11 7 10 8 9
ans =
-4 -3 10 -2 9 -1 8 0 7 1 6 2 5 3 4
|
3 | Pass |
%%
a = 12;
t = pi;
b_correct = 12;
assert(isequal(targetSort(a,t),b_correct))
c =
1
ans =
12
|
4 | Pass |
%%
a = -100:-95;
t = 100;
b_correct = [-100 -99 -98 -97 -96 -95];
assert(isequal(targetSort(a,t),b_correct))
c =
1 2 3 4 5 6
ans =
-100 -99 -98 -97 -96 -95
|
607 Solvers
235 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
278 Solvers
Rotate and display numbered tile
239 Solvers
2985 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!