Given a vector of lengths [a b c], determines whether a triangle with non-zero area (in two-dimensional Euclidean space, smarty!) could have sides of those lengths.
Examples:
[1 2 1000] ---> false
[3 4 5] ---> true
[5 5 5] ---> true
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers591
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6698 Solvers
-
How to find the position of an element in a vector without using the find function
2815 Solvers
-
572 Solvers
-
Back to basics - mean of corner elements of a matrix
462 Solvers
-
Find the dimensions of a matrix
561 Solvers
More from this Author23
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Tests with sides that are not sorted should be added.