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))
n =
1 3 5 7 9
|
2 | Pass |
x = rand(1,100);
actual = everyOther(x);
expected = x(1:2:length(x));
assert(isequal(actual, expected))
n =
Columns 1 through 29
1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57
Columns 30 through 50
59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 99
|
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))
n =
1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31
|
1966 Solvers
It dseon't mettar waht oedrr the lrettes in a wrod are.
494 Solvers
Sum of first n terms of a harmonic progression
190 Solvers
393 Solvers
546 Solvers