This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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))
y =
2
y =
2 2
y =
2 2 2
y =
2 2 2 3
y =
2 2 2 3 3
y =
2 2 2 3 3 3
y =
2 3
|
2 | Pass |
x = [1 1 1];
y_correct = [1];
assert(isequal(threeTimes(x),y_correct))
y =
1
y =
1 1
y =
1 1 1
y =
1
|
3 | Pass |
x = [5 10 -3 10 -3 11 -3 5 5 7];
y_correct = [-3 5];
assert(isequal(threeTimes(x),y_correct))
y =
5
y =
5 -3
y =
5 -3 -3
y =
5 -3 -3 -3
y =
5 -3 -3 -3 5
y =
5 -3 -3 -3 5 5
y =
-3 5
|
1934 Solvers
1399 Solvers
given 3 sides, find area of this triangle
600 Solvers
299 Solvers
Return unique values without sorting
480 Solvers