Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
p=1; q=3;
y_correct = 6;
assert(isequal(cantor_rational2index(p,q),y_correct))
k =
6
|
2 | Pass |
%%
p=2; q=3;
y_correct = 9;
assert(isequal(cantor_rational2index(p,q),y_correct))
k =
9
|
3 | Pass |
%%
p=22; q=7;
y_correct = 385;
assert(isequal(cantor_rational2index(p,q),y_correct))
k =
385
|
4 | Pass |
%%
p=355; q=113;
y_correct = 108924;
assert(isequal(cantor_rational2index(p,q),y_correct))
k =
108924
|
Determine whether a vector is monotonically increasing
11924 Solvers
486 Solvers
Determine if a Given Number is a Triangle Number
322 Solvers
277 Solvers
379 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!