2022-03-27 20:46:41 +08:00
< p > Given an integer array < code > nums< / code > , return < em > the largest perimeter of a triangle with a non-zero area, formed from three of these lengths< / em > . If it is impossible to form any triangle of a non-zero area, return < code > 0< / code > .< / p >
< p > < / p >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 1:< / strong > < / p >
2022-03-27 20:46:41 +08:00
< pre >
< strong > Input:< / strong > nums = [2,1,2]
< strong > Output:< / strong > 5
2023-12-09 18:42:21 +08:00
< strong > Explanation:< / strong > You can form a triangle with three side lengths: 1, 2, and 2.
2022-03-27 20:46:41 +08:00
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 2:< / strong > < / p >
2022-03-27 20:46:41 +08:00
< pre >
2023-12-09 18:42:21 +08:00
< strong > Input:< / strong > nums = [1,2,1,10]
2022-03-27 20:46:41 +08:00
< strong > Output:< / strong > 0
2023-12-09 18:42:21 +08:00
< strong > Explanation:< / strong >
You cannot use the side lengths 1, 1, and 2 to form a triangle.
You cannot use the side lengths 1, 1, and 10 to form a triangle.
You cannot use the side lengths 1, 2, and 10 to form a triangle.
As we cannot use any three side lengths to form a triangle of non-zero area, we return 0.
2022-03-27 20:46:41 +08:00
< / pre >
< p > < / p >
< p > < strong > Constraints:< / strong > < / p >
< ul >
< li > < code > 3 < = nums.length < = 10< sup > 4< / sup > < / code > < / li >
< li > < code > 1 < = nums[i] < = 10< sup > 6< / sup > < / code > < / li >
< / ul >