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))
|
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))
|
156 Solvers
Find the sum of the elements in the "second" diagonal
879 Solvers
197 Solvers
201 Solvers
Let's get back to school, and create multiplication tables
103 Solvers