Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [8 10 9 9 1
8 3 2 4 4
10 4 6 2 7
7 1 6 4 1];
y_correct = [4480 120 648 288 28];
assert(isequal(ProdMat(x),y_correct))
|
2 | Pass |
x = [7 4 1 4 5 3 7 5 7
1 6 6 6 9 8 2 2 8
6 7 9 8 4 9 6 7 5
1 2 8 9 3 5 5 7 9];
y_correct = [42 336 432 1728 540 1080 420 490 2520];
assert(isequal(ProdMat(x),y_correct))
|
3 | Pass |
filetext = fileread('ProdMat.m');
assert(isempty(strfind(filetext, 'regexp')),'regexp hacks are forbidden')
|
4 | Pass |
filetext = fileread('ProdMat.m');
assert(isempty(strfind(filetext, 'prod')),'prod() function is forbidden')
|
5 | Pass |
filetext = fileread('ProdMat.m');
assert(isempty(strfind(filetext, '!echo')),'!echo hacks are forbidden')
|
Project Euler: Problem 1, Multiples of 3 and 5
1064 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
196 Solvers
204 Solvers
126 Solvers
Flip the vector from right to left
753 Solvers