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))
a =
4 4
3 3
2 2
1 1
b =
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))
a =
-4.0000 7.6000
-3.0000 6.6000
10.0000 6.4000
-2.0000 5.6000
9.0000 5.4000
-1.0000 4.6000
8.0000 4.4000
0 3.6000
7.0000 3.4000
1.0000 2.6000
6.0000 2.4000
2.0000 1.6000
5.0000 1.4000
3.0000 0.6000
4.0000 0.4000
b =
-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))
a =
12.0000 8.8584
b =
12
|
4 | Pass |
a = -100:-95;
t = 100;
b_correct = [-100 -99 -98 -97 -96 -95];
assert(isequal(targetSort(a,t),b_correct))
a =
-100 200
-99 199
-98 198
-97 197
-96 196
-95 195
b =
-100 -99 -98 -97 -96 -95
|
649 Solvers
Make one big string out of two smaller strings
1070 Solvers
322 Solvers
807 Solvers
178 Solvers