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))
count =
0
count =
1
count =
2
count =
3
count =
1
count =
2
count =
1
count =
2
count =
1
|
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
count =
0
count =
1
count =
2
count =
3
|
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')
|
6063 Solvers
Matrix indexing with two vectors of indices
485 Solvers
249 Solvers
Check if number exists in vector
4466 Solvers
Is this triangle right-angled?
2394 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!