Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 0 0 2 0];
y_correct = [1 1 1 2 2];
assert(isequal(bleed_to_the_right(x),y_correct))
filetext = fileread('bleed_to_the_right.m');
assert(isempty(strfind(filetext, 'eval')),'eval* command is forbidden')
assert(isempty(strfind(filetext, 'inline')),'inline command is forbidden')
|
2 | Pass |
x = [0 0 -12 13 0 i 0 -i 76.54321 0 0];
y_correct = [0 0 -12 13 13 i i -i 76.54321 76.54321 76.54321];
assert(isequal(bleed_to_the_right(x),y_correct))
|
3 | Pass |
x = [1:100 0];
y_correct = [1:100 100];
assert(isequal(bleed_to_the_right(x),y_correct))
|
4 | Pass |
x = rand(1,1000);
x(randi(500,1,50)*2) = 0;
y_correct = x;
y_correct(~y_correct) = y_correct(find(~y_correct)-1);
assert(isequal(bleed_to_the_right(x),y_correct))
|
5 | Pass |
x = sqrt(1:100);
y_correct = floor(x);
x(x~=floor(x)) = 0;
assert(isequal(bleed_to_the_right(x),y_correct))
|
6063 Solvers
1163 Solvers
686 Solvers
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
516 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!