Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=magic(3);
n=3;
y_correct=[8 8 8; 3 3 3; 4 4 4];
assert(isequal(reproduce_nv(x,n),y_correct))
|
2 | Pass |
x=magic(10);
n=19;
y_correct=repmat(x(:,1),1,19);
assert(isequal(reproduce_nv(x,n),y_correct))
|
3 | Pass |
x=1;
n=0;
y_correct=linspace(x,x,n); %arbitrary way to get the soln
assert(isequal(reproduce_nv(x,n),y_correct))
|
4 | Pass |
x='1';
n=7;
y_correct=['1' '1' '1' '1' '1' '1' '1'];
assert(isequal(reproduce_nv(x,n),y_correct))
|
Create a square matrix of multiples
330 Solvers
Sort numbers by outside digits
116 Solvers
125 Solvers
146 Solvers
296 Solvers