Hi I'm currently learning about BST in python.
For a given list of ints that represent a BST, how many orders of the list will give the same BST. ie.
[2,1,3] & [2,3,1]
2
| \
1 3
any hints would be appreciated.
Hi I'm currently learning about BST in python. For a given list of ints that represent...