Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = rand(1,10);
actual = everyOther(x);
expected = x(1:2:length(x));
assert(isequal(actual, expected))
|
2 | Pass |
x = rand(1,100);
actual = everyOther(x);
expected = x(1:2:length(x));
assert(isequal(actual, expected))
|
3 | Pass |
x = ['A' 'long' 'time' 'ago' 'in' 'a' 'galaxy' 'far' 'far' 'away'];
actual = everyOther(x);
expected = x(1:2:length(x));
assert(isequal(actual, expected))
|
Return the largest number that is adjacent to a zero
3751 Solvers
Read a column of numbers and interpolate missing data
1235 Solvers
given 3 sides, find area of this triangle
680 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
How many trades represent all the profit?
520 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!