Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = -21;
y_correct = 2;
assert(isequal(count_digits(x),y_correct))
|
2 | Pass |
x = 3567;
y_correct = 4;
assert(isequal(count_digits(x),y_correct))
|
3 | Pass |
x = -2;
y_correct = 1;
assert(isequal(count_digits(x),y_correct))
|
Make one big string out of two smaller strings
1070 Solvers
190 Solvers
196 Solvers
193 Solvers
Back to basics - mean of corner elements of a matrix
236 Solvers