solution

package
v0.0.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 18, 2021 License: MIT Imports: 1 Imported by: 0

README

976. Largest Perimeter Triangle

[简单] 排序 数学


给定由一些正数(代表长度)组成的数组 A,返回由其中三个长度组成的、面积不为零的三角形的最大周长。

如果不能形成任何面积不为零的三角形,返回 0。

 




示例 1:

输入:[2,1,2]
输出:5


示例 2:

输入:[1,2,1]
输出:0


示例 3:

输入:[3,2,3,4]
输出:10


示例 4:

输入:[3,6,2,3]
输出:8


 

提示:


	3 <= A.length <= 10000
	1 <= A[i] <= 10^6


Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL