This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 13;
y_correct = 7;
assert(isequal(pi_digit(x),y_correct))
ans =
7
|
2 | Pass |
%%
x = 14;
y_correct = 9;
assert(isequal(pi_digit(x),y_correct))
ans =
9
|
3 | Pass |
%%
x = 15;
y_correct = 3;
assert(isequal(pi_digit(x),y_correct))
ans =
3
|
340 Solvers
351 Solvers
337 Solvers
Sum of diagonal of a square matrix
1159 Solvers
Number of digits in an integer
271 Solvers