124.go 219 B

1234567891011121314151617
  1. package main
  2. /**
  3. * Definition for a binary tree node.
  4. * type TreeNode struct {
  5. * Val int
  6. * Left *TreeNode
  7. * Right *TreeNode
  8. * }
  9. */
  10. func maxPathSum(root *TreeNode) int {
  11. return 0
  12. }
  13. func main() {
  14. }