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')
|
927 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1493 Solvers
4334 Solvers
1882 Solvers
Check that number is whole number
1071 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!