From cba141be6aa2dea3364c5e485ab270344c020752 Mon Sep 17 00:00:00 2001 From: bt3gl <138340846+bt3gl-cryptographer@users.noreply.github.com> Date: Tue, 8 Aug 2023 15:22:34 -0700 Subject: [PATCH] Update bst_convert_sorted_array.py --- trees/bst_convert_sorted_array.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/trees/bst_convert_sorted_array.py b/trees/bst_convert_sorted_array.py index 9641319..1d7a7db 100644 --- a/trees/bst_convert_sorted_array.py +++ b/trees/bst_convert_sorted_array.py @@ -2,11 +2,8 @@ # -*- coding: utf-8 -*- # author: bt3gl -# note that there is no unique solution, and different choices -# for the root node would reflect on p is defined - -def convert_sorted_array_bst(nums): +def convert_sorted_array_to_bst(nums): def helper(left, right):