Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
p0 = [0 0 0];
p1 = [1 1 1];
p2 = [2 2 2];
p3 = [3 3 3];
t0 = 0;
t1 = 1;
d = 1;
ok = true;
assert(isequal(safetrip(d, t0, t1, p0, p1, p2, p3), ok))
|
2 | Pass |
p0 = [3 3 3];
p1 = [2 2 2];
p2 = [2 2 2];
p3 = [3 3 3];
t0 = 0;
t1 = 1;
d = 1;
ok = false;
assert(isequal(safetrip(d, t0, t1, p0, p1, p2, p3), ok))
|
3 | Pass |
p0 = [1 2 3];
p1 = [4 5 6];
p2 = [3 2 1];
p3 = [6 5 4];
t0 = 10;
t1 = 20;
d = 2;
ok = true;
assert(isequal(safetrip(d, t0, t1, p0, p1, p2, p3), ok))
|
2401 Solvers
1763 Solvers
How long is the longest prime diagonal?
338 Solvers
2538 Solvers
229 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!