MCPcopy Create free account
hub / github.com/Jensenczx/CodeEveryday / Solution

Class Solution

96_minDepth.java:12–36  ·  view source on GitHub ↗

Definition of TreeNode: public class TreeNode { public int val; public TreeNode left, right; public TreeNode(int val) { this.val = val; this.left = this.right = null; } }

Source from the content-addressed store, hash-verified

source not stored for this graph (policy: none)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected