Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [1 2 3 4 5];
b = [10 9 8 7 6];
y_correct = [1 10 2 9 3 8 4 7 5 6];
assert(isequal(two1_one1(a,b),y_correct))
y =
1 10 2 9 3 8 4 7 5 6
|
2 | Pass |
a = [10 20 30 40 50];
b = [10 90 80 70 60];
y_correct = [10 10 20 90 30 80 40 70 50 60];
assert(isequal(two1_one1(a,b),y_correct))
y =
10 10 20 90 30 80 40 70 50 60
|
Number of 1s in a binary string
2826 Solvers
Do Fast Fourier Transformation
221 Solvers
Number of odd and even elements within matrix
124 Solvers
find the roots of a quadratic equation
168 Solvers
201 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!