Class Solution
java.lang.Object
g0901_1000.s0976_largest_perimeter_triangle.Solution
976 - Largest Perimeter Triangle.<p>Easy</p>
<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><strong>Example 1:</strong></p>
<p><strong>Input:</strong> nums = [2,1,2]</p>
<p><strong>Output:</strong> 5</p>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> nums = [1,2,1]</p>
<p><strong>Output:</strong> 0</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>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
largestPerimeter
public int largestPerimeter(int[] nums)
-