Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [2 2 3 4 3 4 6 9 9]
y = [1 1 0 0 0 0 0 1 1];
assert(isequal(findSameNum(x),y))
x =
2 2 3 4 3 4 6 9 9
|
2 | Pass |
%%
x = [2 2 9 9]
y = [1 1 1 1];
assert(isequal(findSameNum(x),y))
x =
2 2 9 9
|
3 | Pass |
%%
x = [2 1 3 4 3 4 6 9 4]
y = [0 0 0 0 0 0 0 0 0];
assert(isequal(findSameNum(x),y))
x =
2 1 3 4 3 4 6 9 4
|
4 | Pass |
%%
x = [8 8 7 6 3 2 4 8]
y = [1 1 0 0 0 0 0 0];
assert(isequal(findSameNum(x),y))
x =
8 8 7 6 3 2 4 8
|
5 | Pass |
%%
x = [3 4 5 6]
y = [0 0 0 0];
assert(isequal(findSameNum(x),y))
x =
3 4 5 6
|
6 | Pass |
%%
x = [2 5 5 9 3 4 6 6 4]
y = [0 1 1 0 0 0 1 1 0];
assert(isequal(findSameNum(x),y))
x =
2 5 5 9 3 4 6 6 4
|
188 Solvers
188 Solvers
find the maximum element of the matrix
348 Solvers
5117 Solvers
64 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!