Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 123;
x_correct = [1 2 3];
assert(isequal(int2vec(x),x_correct))
x =
'123'
y =
[]
y =
1
y =
1 2
y =
1 2 3
|
2 | Pass |
x = 56409;
x_correct = [5 6 4 0 9];
assert(isequal(int2vec(x),x_correct))
x =
'56409'
y =
[]
y =
5
y =
5 6
y =
5 6 4
y =
5 6 4 0
y =
5 6 4 0 9
|
3 | Pass |
x = 1000;
x_correct = [1 0 0 0];
assert(isequal(int2vec(x),x_correct))
x =
'1000'
y =
[]
y =
1
y =
1 0
y =
1 0 0
y =
1 0 0 0
|
Find the alphabetic word product
1999 Solvers
2111 Solvers
214 Solvers
273 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
385 Solvers