From 6b81a56f51207a3b6833f95760a46eec6ad82958 Mon Sep 17 00:00:00 2001 From: MAYANKVASH <56931724+MAYANKVASH@users.noreply.github.com> Date: Wed, 23 Oct 2019 22:19:40 +0530 Subject: [PATCH] Update BST.java --- BST.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BST.java b/BST.java index 544e77d..d9729bb 100644 --- a/BST.java +++ b/BST.java @@ -8,7 +8,7 @@ private class Node { } private Node root; - + //constructor public BSTT(int arr[]) { this.root = construct(arr, 0, arr.length - 1); }