Skip to content

PSH 1.2.1

Latest
Compare
Choose a tag to compare
@ShanePark ShanePark released this 05 Aug 06:25

TreeNode's all argument constructor

    public TreeNode(int val, TreeNode left, TreeNode right) {
        this.val = val;
        this.left = left;
        this.right = right;
    }

now have public access modifier