Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 9 1 1
9 1 9 1
1 3 9 1
9 9 8 1];
y_correct = 6;
assert(isequal(lPath(x),y_correct))
|
2 | Pass |
x = [1 9 9 9 9 9 9
1 9 9 9 3 1 9
1 1 1 1 9 9 1];
y_correct = 10;
assert(isequal(lPath(x),y_correct))
|
3 | Pass |
x = eye(50);
y_correct = 2;
assert(isequal(lPath(x),y_correct))
|
Extract leading non-zero digit
1205 Solvers
Given two strings, find the maximum overlap
461 Solvers
2240 Solvers
282 Solvers
2456 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!