Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
n=3;
x=7;
q=2;
y_correct = 1;
assert(isequal(whatdigit(n,x,q),y_correct))
y =
2187
|
2 | Fail |
n=5;
x=5;
q=3;
y_correct = 2;
assert(isequal(whatdigit(n,x,q),y_correct))
y =
3125
|
3 | Fail |
n=7;
x=7;
q=3;
y_correct = 3;
assert(isequal(whatdigit(n,x,q),y_correct))
y =
823543
|
4 | Fail |
n=21;
x=17;
q=18;
y_correct = 8;
assert(isequal(whatdigit(n,x,q),y_correct))
y =
3.0042e+22
|
5 | Fail |
n=201;
x=123;
q=241;
y_correct = 7;
assert(isequal(whatdigit(n,x,q),y_correct))
y =
1.9639e+283
|
6 | Pass |
n=1;
x=1;
q=1;
y_correct = 1;
assert(isequal(whatdigit(n,x,q),y_correct))
y =
1
|
Find the "ordinary" or Euclidean distance between A and Z
137 Solvers
501 Solvers
Back to basics 23 - Triangular matrix
634 Solvers
Simple date to serial no. conversion
113 Solvers
67 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!