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 3 4 5;4 3 1 2 2]';
y_correct = [3 4 5 2 1]';
assert(isequal(sort2(x),y_correct))
c2 =
4
3
1
2
2
b =
1
2
2
3
4
I =
3
4
5
2
1
c1 =
1
2
3
4
5
y =
3
4
5
2
1
|
2 | Pass |
x = [3 1 2;1 -1 0]';
y_correct = [1 2 3]';
assert(isequal(sort2(x),y_correct))
c2 =
1
-1
0
b =
-1
0
1
I =
2
3
1
c1 =
3
1
2
y =
1
2
3
|
Given two strings, find the maximum overlap
300 Solvers
2111 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
209 Solvers
579 Solvers
152 Solvers