Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
tiles = [7 12 8 6 9];
nRows = 2;
nCols = 2;
omit = 6;
board = fill_board(tiles,nRows,nCols);
tiles_used = tiles(board(:));
assert(isequal(setdiff(tiles,tiles_used),omit))
|
2 | Pass |
%%
tiles = [12 6 1 20 18 7 4 17];
nRows = 3;
nCols = 2;
omit = [1 4];
board = fill_board(tiles,nRows,nCols);
tiles_used = tiles(board(:));
assert(isequal(setdiff(tiles,tiles_used),omit))
|
3 | Pass |
%%
tiles = [2 10 25 38 39 5 24 14 4];
nRows = 2;
nCols = 3;
omit = [2 4 5];
board = fill_board(tiles,nRows,nCols);
tiles_used = tiles(board(:));
assert(isequal(setdiff(tiles,tiles_used),omit))
|
3605 Solvers
Find the largest value in the 3D matrix
1056 Solvers
Change the sign of even index entries of the reversed vector
296 Solvers
282 Solvers
414 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!