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 = [60 60];
y_correct = 60;
assert(isequal(missing_interior_angle(x),y_correct))
|
2 | Pass |
%%
x = [45 90];
y_correct = 45;
assert(isequal(missing_interior_angle(x),y_correct))
|
3 | Pass |
%%
x = [90 70 70];
y_correct = 130;
assert(isequal(missing_interior_angle(x),y_correct))
|
4 | Pass |
%%
x = [120 120 120 110 110];
y_correct = 140;
assert(isequal(missing_interior_angle(x),y_correct))
|
5 | Pass |
%%
x = 140*ones(1,8);
y_correct = 140;
assert(isequal(missing_interior_angle(x),y_correct))
|
464 Solvers
530 Solvers
Sum the numbers on the main diagonal
453 Solvers
2985 Solvers
Find Out sum of principal diagonal element of given matrix
194 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!