Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 1;
max_n = 9;
n_str = '1';
assert(isequal(betterIndexNum(n,max_n),n_str))
ans =
1
|
2 | Pass |
%%
n = 1;
max_n = 28;
n_str = '01';
assert(isequal(betterIndexNum(n,max_n),n_str))
ans =
01
|
3 | Pass |
%%
n = 28;
max_n = 848984;
n_str = '000028';
assert(isequal(betterIndexNum(n,max_n),n_str))
ans =
000028
|
4 | Pass |
%%
n = 10;
max_n = 100;
n_str = '010';
assert(isequal(betterIndexNum(n,max_n),n_str))
ans =
010
|
Are all the three given point in the same line?
270 Solvers
07 - Common functions and indexing 6
348 Solvers
Remove element(s) from cell array
373 Solvers
2455 Solvers
128 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!