Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
yr = [2 0 0 9];
tst = [2 0 1 0];
ia = 0;
assert(isequal(seq_appears(yr, tst),ia))
|
2 | Pass |
yr = [1 2 3 4];
tst = [5 6 7 8];
ia = 621;
assert(isequal(seq_appears(yr, tst),ia))
|
3 | Pass |
yr = [1 2 3 4];
tst = [4 5 6 7];
ia = 1125;
assert(isequal(seq_appears(yr, tst),ia))
|
4 | Pass |
yr = [1 1 1 1];
tst = [4 7 3 5];
ia = 5;
assert(isequal(seq_appears(yr, tst),ia))
|
5 | Pass |
yr = [1 1 1 1];
tst = [2 2 2 2];
ia = 0;
assert(isequal(seq_appears(yr, tst),ia))
|
6 | Pass |
yr = [1 1 1 1];
tst = [7 7 7 7];
ia = 1171;
assert(isequal(seq_appears(yr, tst),ia))
|
7 | Pass |
yr = [0 0 0 1];
tst = [9 0 0 0];
ia = 780;
assert(isequal(seq_appears(yr, tst),ia))
|
Replace NaNs with the number that appears to its left in the row.
1712 Solvers
339 Solvers
469 Solvers
Arrange vector in ascending order
541 Solvers
Set the array elements whose value is 13 to 0
753 Solvers