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))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In targetSort (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
|
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))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In targetSort (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
|
3 | Pass |
a = 12;
t = pi;
b_correct = 12;
assert(isequal(targetSort(a,t),b_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In targetSort (line 2)
In ScoringEngineTestPoint3 (line 4)
In solutionTest (line 7)]
|
4 | Pass |
a = -100:-95;
t = 100;
b_correct = [-100 -99 -98 -97 -96 -95];
assert(isequal(targetSort(a,t),b_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In targetSort (line 2)
In ScoringEngineTestPoint4 (line 4)
In solutionTest (line 9)]
|
Return the largest number that is adjacent to a zero
3750 Solvers
1223 Solvers
given 3 sides, find area of this triangle
680 Solvers
"Low : High - Low : High - Turn around " -- Create a subindices vector
320 Solvers
348 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!