Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 5 2 2 7 8 3 3 1 3 8 8 8];
y_correct = [2 3];
assert(isequal(threeTimes(x),y_correct))
a =
1 2 3 5 7 8
out =
2
3
3
1
1
4
a =
2 3
|
2 | Pass |
x = [1 1 1];
y_correct = [1];
assert(isequal(threeTimes(x),y_correct))
a =
1
out =
3
a =
1
|
3 | Pass |
x = [5 10 -3 10 -3 11 -3 5 5 7];
y_correct = [-3 5];
assert(isequal(threeTimes(x),y_correct))
a =
-3 5 7 10 11
out =
3
3
1
2
1
a =
-3 5
|
Sum of diagonal of a square matrix
1159 Solvers
1317 Solvers
MATCH THE STRINGS (2 CHAR) very easy
194 Solvers
Do Fast Fourier Transformation
177 Solvers
07 - Common functions and indexing 1
269 Solvers