We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c352fbc commit 7aee850Copy full SHA for 7aee850
Data Structures/Binary Tree/convertListToBST.js
@@ -0,0 +1,10 @@
1
+/**
2
+ * Given a list of sorted numbers
3
+ * Write function that convert the list into a Binary Search Tree (BST)
4
+ *
5
6
+ * 1 3 4 10 19
7
8
+ * 4
9
+ * 1 3 10 19
10
+ */
0 commit comments