Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('pop.m');
assert(isempty(strfind(filetext, 'regexp')),'regexp hacks are forbidden')
|
2 | Pass |
v = [1, 2, 7];
n = 0;
[v, w] = pop(v, n);
v_correct = [1, 2, 7];
assert(isequal(v, v_correct));
assert(isempty(w));
|
3 | Pass |
v = 1:10;
n = 3;
[v, w] = pop(v, n);
v_correct = 1:7;
w_correct = 8:10;
assert(isequal(v, v_correct));
assert(isequal(w, w_correct));
|
4 | Pass |
v = [1; 2; 3]
n = 5;
[v, w] = pop(v, n);
w_correct = [1; 2; 3];
assert(isempty(v));
assert(isequal(w, w_correct));
v =
1
2
3
|
5 | Pass |
v = ones(10, 1);
n = 4;
[v, w] = pop(v, n);
v_correct = ones(6, 1);
w_correct = ones(4, 1);
assert(isequal(v, v_correct));
assert(isequal(w, w_correct));
|
6 | Pass |
v = zeros(1, 8);
n = 2;
[v, w] = pop(v, n);
v_correct = zeros(1, 6);
w_correct = zeros(1, 2);
assert(isequal(v, v_correct));
assert(isequal(w, w_correct));
|
Given a window, how many subsets of a vector sum positive
743 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3619 Solvers
Number of odd and even elements within matrix
124 Solvers
464 Solvers
223 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!