Package 

Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    Example: var ti = TreeNode(5) var v = ti.val Definition for a binary tree node. class TreeNode(var val: Int) { var left: TreeNode? = null var right: TreeNode? = null }

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Solution()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final TreeNode sortedArrayToBST(IntArray num)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait