100-days-of-rust/Week-07/Day-44_Maximum-Edge-Of-A-Triangle/README.md

13 lines
310 B
Markdown
Raw Permalink Normal View History

2023-03-24 01:14:34 +00:00
# Maximum Edge of a Triangle
Create a function that finds the maximum range of a triangle's third edge, where the side lengths are all integers.
## Example
```text
nextEdge(8, 10) ➞ 17
nextEdge(5, 7) ➞ 11
nextEdge(9, 2) ➞ 10
```
## Constraints
- The side lengths of the triangle are positive integers.