Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [ 3 3 1 4;
0 0 1 1;
0 1 2 4];
y_correct = 1;
assert(isequal(mode_cody(x),y_correct))
|
2 | Pass |
x = [ 3 0 1 4;
0 0 1 0;
0 0 2 4];
y_correct = 0;
assert(isequal(mode_cody(x),y_correct))
|
3 | Pass |
x =eye(5);
y_correct = 0;
assert(isequal(mode_cody(x),y_correct))
|
4 | Pass |
x =eye(5)+2;
y_correct = 2;
assert(isequal(mode_cody(x),y_correct))
|
5 | Pass |
x =ones(5)+1.2;
y_correct = 2.2;
assert(isequal(mode_cody(x),y_correct))
|
6 | Pass |
x =zeros(5)+1.2;
y_correct = 1.2;
assert(isequal(mode_cody(x),y_correct))
|
Number of 1s in the Binary Representation of a Number
319 Solvers
404 Solvers
Number of digits in an integer
271 Solvers
Sum of odd numbers in a matrix
232 Solvers
255 Solvers