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 | Fail |
x = [60 60];
y_correct = 60;
assert(isequal(missing_interior_angle(x),y_correct))
|
2 | Fail |
x = [45 90];
y_correct = 45;
assert(isequal(missing_interior_angle(x),y_correct))
|
3 | Fail |
x = [90 70 70];
y_correct = 130;
assert(isequal(missing_interior_angle(x),y_correct))
|
4 | Fail |
x = [120 120 120 110 110];
y_correct = 140;
assert(isequal(missing_interior_angle(x),y_correct))
|
5 | Fail |
x = 140*ones(1,8);
y_correct = 140;
assert(isequal(missing_interior_angle(x),y_correct))
|
Find the sum of all the numbers of the input vector
31946 Solvers
725 Solvers
168 Solvers
241 Solvers
76 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!