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 =
1 2 3 4
s =
1 2 3 4
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 =
7.6000 6.6000 5.6000 4.6000 3.6000 2.6000 1.6000 0.6000 0.4000 1.4000 2.4000 3.4000 4.4000 5.4000 6.4000
s =
4 3 5 2 6 1 7 0 8 -1 9 -2 10 -3 -4
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 =
8.8584
s =
12
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 =
200 199 198 197 196 195
s =
-95 -96 -97 -98 -99 -100
b =
-100 -99 -98 -97 -96 -95
|
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
Getting the row and column location from a matrix
236 Solvers
Magic is simple (for beginners)
2749 Solvers
498 Solvers
903 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!