MCPcopy Create free account
hub / github.com/VanjaRo/LeetCode / min

Function min

tasks/11.go:25–30  ·  view source on GitHub ↗
(i, j int)

Source from the content-addressed store, hash-verified

23}
24
25func min(i, j int) int {
26 if i < j {
27 return i
28 }
29 return j
30}
31
32func max(i, j int) int {
33 if i < j {

Callers 1

maxAreaFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected