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 the Binary Representation of a Number
319 Solvers
299 Solvers
268 Solvers
192 Solvers
Is this triangle right-angled?
1363 Solvers