Skip to content

Commit 7a816e7

Browse files
authored
Comment out Python TokenError
1 parent df9c8a8 commit 7a816e7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

data_structures/bst/linked_list_to_bst.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,6 @@ def linked_list_to_bst(head):
2828
def ll_to_bst_recur(head, n):
2929
if n <= 0:
3030
return None
31-
left = ll_to_bst_recur(
31+
# TODO: Fix me!
32+
# left = ll_to_bst_recur(
3233

0 commit comments

Comments
 (0)