**Problem Statement:**
Given the required input arguments, write an efficient algorithm to solve the **Two Sum in BST** problem. Implement the required logic as specified by standard definitions for this classic algorithmic challenge.
**Hint / Expected Approach:**
BFS/DFS with hash set OR in-order + two pointer
**Edge Cases to Consider:**
- (1) BST with one node
- (2) Target not achievable
- (3) Same node used twice