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
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13051 Solvers
9834 Solvers
Arrange Vector in descending order
4076 Solvers
Back to basics 19 - character types
225 Solvers
Determine the number of odd integers in a vector
435 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!