I like the reference - it's a good resource.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
b = [0 0 0 0
0 1 2 0
0 0 0 0];
route_correct = 'WE';
assert(isequal(circumNavigate(b),route_correct))
|
2 | Pass |
%%
b = [0 0 0 0 0 0
0 0 2 0 0 0
0 1 1 1 1 0
0 0 1 0 0 0
0 0 0 0 0 0];
route_correct = 'SEEWWSNWEN';
assert(isequal(circumNavigate(b),route_correct))
|
3 | Pass |
%%
b = [0 0 0 0 0 0 0
0 1 2 0 1 1 0
0 1 1 1 1 1 0
0 0 0 1 0 0 0
0 0 0 0 0 0 0];
route_correct = 'SEENESWWSNWWNE';
assert(isequal(circumNavigate(b),route_correct))
|
4 | Pass |
%%
b = [0 0 0 0 0 0 0
0 1 1 1 1 0 0
0 1 1 1 1 1 0
0 1 2 1 0 0 0
0 0 0 0 0 0 0];
route_correct = 'WNNEEESEWWSW';
assert(isequal(circumNavigate(b),route_correct))
|
Return the 3n+1 sequence for n
6167 Solvers
874 Solvers
Back to basics 3 - Temp Directory
328 Solvers
394 Solvers
Construct an index vector from two input vectors in vectorized fashion
175 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!