Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [0 0 1 1
0 1 -1 -1
2 1 -1 2
2 2 0 0
-1 0 2 1
0 1 0 1];
y_correct = [0 0 0 0
0 0 0 1
0 1 1 -1
2 1 -1 2
2 2 -1 1
-1 1 2 1];
assert(isequal(zerosFirst(x),y_correct))
|
2 | Pass |
x = [12 56 0 0 65 122 0 37]'
y_correct = [0 0 0 12 56 65 122 37]'
assert(isequal(zerosFirst(x),y_correct))
x =
12
56
0
0
65
122
0
37
y_correct =
0
0
0
12
56
65
122
37
|
3 | Pass |
filetext = fileread('zerosFirst.m');
assert(isempty(strfind(filetext, 'regexp')),'regexp hacks are forbidden')
|
4 | Pass |
filetext = fileread('zerosFirst.m');
assert(~isempty(strfind(filetext, 'for')),'must use a for loop in solving this problem')
|
5 | Pass |
filetext = fileread('zerosFirst.m');
assert(isempty(strfind(filetext, '!echo')),'!echo hacks are forbidden')
|
351 Solvers
Set the array elements whose value is 13 to 0
935 Solvers
The sum of the numbers in the vector
426 Solvers
2098 Solvers
615 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!