Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/StudyRust/leetcode_rust
/ main
Function
main
812-largest-triangle-area.rs:14–17 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
12
}
13
14
fn main() {
15
let points = vec![vec![0,0],vec![0,1],vec![1,0],vec![0,2],vec![2,0]];
16
println!(
"{:?}"
, largest_triangle_area(points));
17
}
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected