This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
T = [1, 2, 3; 1, 3, 4; 1, 2, 4; 2, 3, 4];
e = [2, 4];
S = [1, 2, 4; 2, 3, 4];
assert(isequal(sortrows(find_triangles_from_edge(T,e)),S))
|
2 | Pass |
T = [1, 2, 3; 1, 3, 4; 1, 4, 5; 1, 2, 5; 2, 3, 6; 3, 4, 6; 4, 5, 6; 2, 5, 6; 2, 3, 4; 2, 4, 5];
e = [2, 3];
S = [1, 2, 3; 2, 3, 4; 2, 3, 6];
assert(isequal(sortrows(find_triangles_from_edge(T,e)),S))
|
3 | Pass |
T = [1, 2, 4; 2, 3, 4; 5, 6, 8; 6, 7, 8; 1, 2, 5; 2, 5, 6; 2, 3, 6; 3, 6, 7; 3, 4, 7; 4, 7, 8; 1, 4, 8; 1, 5, 8];
e = [3, 7];
S = [3, 4, 7; 3, 6, 7];
assert(isequal(sortrows(find_triangles_from_edge(T,e)),S))
|
4 | Pass |
T = [2, 3, 5; 3, 5, 7; 5, 7, 11; 7, 11, 13];
e = [6, 8];
assert(isempty(find_triangles_from_edge(T,e)))
|
Back to basics 11 - Max Integer
678 Solvers
399 Solvers
Return elements unique to either input
550 Solvers
Set some matrix elements to zero
290 Solvers
70 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!