Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 20;
m = 5;
total = 190;
assert(isequal(no_digit_sum(n,m),total))
|
2 | Pass |
%%
n = 10;
m = 5;
total = 50;
assert(isequal(no_digit_sum(n,m),total))
|
3 | Pass |
%%
n = 33;
m = 3;
total = 396;
assert(isequal(no_digit_sum(n,m),total))
|
Return the 3n+1 sequence for n
5201 Solvers
Convert a numerical matrix into a cell array of strings
152 Solvers
Cell Counting: How Many Draws?
254 Solvers
Change the sign of even index entries of the reversed vector
213 Solvers
Celsius to Fahrenheit converter
280 Solvers