Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = false;
assert(isequal(cyclicNumber(x),y_correct))
|
2 | Pass |
x = 230769;
y_correct = true;
assert(isequal(cyclicNumber(x),y_correct))
ans =
'923076'
|
3 | Pass |
x = 307692;
y_correct = true;
assert(isequal(cyclicNumber(x),y_correct))
ans =
'923076'
|
4 | Pass |
x = 307691;
y_correct = false;
assert(isequal(cyclicNumber(x),y_correct))
|
5 | Pass |
x = 307693;
y_correct = false;
assert(isequal(cyclicNumber(x),y_correct))
|
6 | Pass |
x = 2;
y_correct = false;
assert(isequal(cyclicNumber(x),y_correct))
|
7 | Pass |
x = 285714;
y_correct = true;
assert(isequal(cyclicNumber(x),y_correct))
ans =
'571428'
|
8 | Pass |
x = 55;
y_correct = false;
assert(isequal(cyclicNumber(x),y_correct))
|
9 | Pass |
x = 142857142857;
y_correct = true;
assert(isequal(cyclicNumber(x),y_correct))
ans =
'714285714285'
|
10 | Pass |
x = 142857;
y_correct = true;
assert(isequal(cyclicNumber(x),y_correct))
ans =
'714285'
|
1092 Solvers
1263 Solvers
Matrix indexing with two vectors of indices
485 Solvers
Matrix which contains the values of an other matrix A at the given locations.
214 Solvers
184 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!