Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4 5 6 7 8 9 0 0 0 0 0 0 0 0 0 9 8 7 6 5 4 3 2 1];
LP = [9 10] %[Length Position]
assert(isequal(LengthAndPosnZeros(x),LP))
LP =
9 10
k =
9
l =
1
ans =
9 10
|
2 | Pass |
x = [1 0 3 49 3 2 232 3 0 0 0 0 0 0 8 290 0 0 0 12 323 34];
LP = [6 9]
assert(isequal(LengthAndPosnZeros(x),LP))
LP =
6 9
k =
6
l =
2
ans =
6 9
|
3 | Pass |
x = [1 1 0 0 0 0 0 0 0 1 1 1 1 1 1 0];
LP = [7 3];
assert(isequal(LengthAndPosnZeros(x),LP))
k =
7
l =
1
ans =
7 3
|
4 | Pass |
x = [1 2 0 0];
LP = [2 3] %[Length Position]
assert(isequal(LengthAndPosnZeros(x),LP))
LP =
2 3
k =
2
l =
1
ans =
2 3
|
5 | Pass |
x = [1 2 0 0 0 0 0 0 0 0 0 9 0 0 0 0 0 0];
LP = [9 3] %[Length Position]
assert(isequal(LengthAndPosnZeros(x),LP))
LP =
9 3
k =
9
l =
1
ans =
9 3
|
6 | Pass |
x = [1 0 0 0 0 0 0 0 0 0 1];
LP = [9 2] %[Length Position]
assert(isequal(LengthAndPosnZeros(x),LP))
LP =
9 2
k =
9
l =
1
ans =
9 2
|
7 | Pass |
x = [111 541 0 45 3 0 0 0 15 26 0 4 84 3 84 0 9];
LP = [3 6] %[Length Position]
assert(isequal(LengthAndPosnZeros(x),LP))
LP =
3 6
k =
3
l =
2
ans =
3 6
|
8 | Pass |
x = [1 0 1];
LP = [1 2] %[Length Position]
assert(isequal(LengthAndPosnZeros(x),LP))
LP =
1 2
k =
1
l =
1
ans =
1 2
|
1961 Solvers
284 Solvers
325 Solvers
413 Solvers
Area of an equilateral triangle
2759 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!