Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions exercises/triangle/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ A _scalene_ triangle has all sides of different lengths.

For a shape to be a triangle at all, all sides have to be of length > 0, and the sum of the lengths of any two sides must be greater than or equal to the length of the third side.

~~~~exercism/note
We opted to not include degenerate triangles (triangles that violate these rules) in the tests to keep things simpler.
You may handle those situations if you wish to do so, or safely ignore them.
~~~~

In equations:

Let `a`, `b`, and `c` be sides of the triangle.
Expand Down