Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 5;
y_correct = repmat( [1 1 1 0 0 0 1 0 1 0 0 0 1 1 1],[30,1]);;
assert(isequal(barEncoder(x),y_correct))
|
2 | Pass |
%%
x = 12;
y_correct = repmat( [1 1 1 0 0 0 1 0 0 0 1 0 1 0 1 1 1],[30,1]);;
assert(isequal(barEncoder(x),y_correct))
|
3 | Pass |
%%
x = 135;
y_correct = repmat( [1 1 1 0 0 0 1 0 1 0 1 0 1 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 1],[30,1]);;
assert(isequal(barEncoder(x),y_correct))
|
4 | Pass |
%%
x = 2;
y_correct = repmat( [1 1 1 0 0 0 1 0 1 1 1],[30,1]);
assert(isequal(barEncoder(x),y_correct))
|
5 | Pass |
%%
x = 22;
y_correct = repmat( [1 1 1 0 0 0 1 0 1 0 0 0 1 0 0 0 1 0 1 1 1],[30,1]);
assert(isequal(barEncoder(x),y_correct))
|
Select every other element of a vector
16251 Solvers
Maximum running product for a string of numbers
817 Solvers
Find best placement for ordered dominoes (harder)
194 Solvers
Create a matrix X, where each column is a shifted copy of the vector v
116 Solvers
2100 Solvers