Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
e9f4b23
add algorithm to check binary search tree
alexpantyukhin Nov 2, 2022
e2693ee
add tests
alexpantyukhin Nov 2, 2022
948dc8b
add leetcode link
alexpantyukhin Nov 2, 2022
39ec691
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 2, 2022
068607d
fix typehints
alexpantyukhin Nov 2, 2022
c721ca3
typehints fixes
alexpantyukhin Nov 2, 2022
7c13235
Merge remote-tracking branch 'origin/is_binary_search_tree' into is_b…
alexpantyukhin Nov 2, 2022
7e76f52
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 2, 2022
c531f96
Update data_structures/binary_tree/is_bst.py
alexpantyukhin Nov 2, 2022
f821963
Update data_structures/binary_tree/is_bst.py
alexpantyukhin Nov 2, 2022
73769ae
Update data_structures/binary_tree/is_bst.py
alexpantyukhin Nov 2, 2022
dd0fbf8
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 2, 2022
6b3eac4
fix flake8
alexpantyukhin Nov 2, 2022
a58f63f
Merge branch 'is_binary_search_tree' of https://github.com/alexpantyu…
alexpantyukhin Nov 2, 2022
385a5ab
fix typehint
alexpantyukhin Nov 2, 2022
ef2e902
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 2, 2022
a467c1f
add TreeNode resolving
alexpantyukhin Nov 2, 2022
7cffe20
Update data_structures/binary_tree/is_bst.py
alexpantyukhin Nov 2, 2022
516cb2d
Update data_structures/binary_tree/is_bst.py
alexpantyukhin Nov 2, 2022
6ba1056
Update data_structures/binary_tree/is_bst.py
alexpantyukhin Nov 2, 2022
bdf43d4
Update data_structures/binary_tree/is_bst.py
alexpantyukhin Nov 2, 2022
c11b07d
change func name
alexpantyukhin Nov 2, 2022
459133c
Update data_structures/binary_tree/is_bst.py
alexpantyukhin Nov 2, 2022
365cceb
review notes fixes.
alexpantyukhin Nov 3, 2022
bebfcd0
Merge branch 'is_binary_search_tree' of https://github.com/alexpantyu…
alexpantyukhin Nov 3, 2022
99c1a5d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 3, 2022
896ae3a
fix flake8
alexpantyukhin Nov 3, 2022
f488438
fix flake 8
alexpantyukhin Nov 3, 2022
4a4d578
fix doctest
alexpantyukhin Nov 3, 2022
60bf506
Update data_structures/binary_tree/is_bst.py
cclauss Nov 3, 2022
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion data_structures/binary_tree/is_bst.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"""



class TreeNode:
def __init__(
self,
Expand Down