Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
m = [3 1 5 0 0
3 4 1 5 0
4 2 1 5 0];
srows = [3 1 5 0 0;4 2 1 5 0];
assert(isequal(findsimilar(m),srows))
|
2 | Pass |
%%
m = [3 1 5 0 0
1 2 5 0 0
1 3 4 1 5
2 1 5 0 0];
srows = [3 1 5 0 0; 2 1 5 0 0];
assert(isequal(findsimilar(m),srows))
|
3 | Pass |
%%
m = [3 1 5 7 0
3 2 5 7 0
3 5 7 2 0
1 5 7 2 0
4 6 7 8 9
4 5 7 8 0
4 5 6 7 8];
srows = [3 1 5 7 0;1 5 7 2 0;4 6 7 8 9;4 5 7 8 0];
assert(isequal(findsimilar(m),srows))
|
4 | Pass |
%%
m = [3 1 5 0 0
3 1 6 0 0
3 2 6 0 0
2 1 5 6 0];
srows = m;
assert(isequal(findsimilar(m), srows))
|
647 Solvers
583 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
196 Solvers
Split a string into chunks of specified length
168 Solvers
126 Solvers