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))
diff =
1 2 3 4
val =
4 3 2 1
I =
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))
diff =
Columns 1 through 9
7.6000 6.6000 5.6000 4.6000 3.6000 2.6000 1.6000 0.6000 0.4000
Columns 10 through 15
1.4000 2.4000 3.4000 4.4000 5.4000 6.4000
val =
Columns 1 through 9
7.6000 6.6000 6.4000 5.6000 5.4000 4.6000 4.4000 3.6000 3.4000
Columns 10 through 15
2.6000 2.4000 1.6000 1.4000 0.6000 0.4000
I =
1 2 15 3 14 4 13 5 12 6 11 7 10 8 9
|
3 | Pass |
%%
a = 12;
t = pi;
b_correct = 12;
assert(isequal(targetSort(a,t),b_correct))
diff =
8.8584
val =
8.8584
I =
1
|
4 | Pass |
%%
a = -100:-95;
t = 100;
b_correct = [-100 -99 -98 -97 -96 -95];
assert(isequal(targetSort(a,t),b_correct))
diff =
200 199 198 197 196 195
val =
200 199 198 197 196 195
I =
1 2 3 4 5 6
|
3895 Solvers
Calculate the Levenshtein distance between two strings
456 Solvers
651 Solvers
Find the maximum number of decimal places in a set of numbers
740 Solvers
520 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!