**Problem Statement:**
Given the required input arguments, write an efficient algorithm to solve the **Find First and Last Position** problem. Implement the required logic as specified by standard definitions for this classic algorithmic challenge.
**Hint / Expected Approach:**
Two binary searches: leftmost and rightmost
**Edge Cases to Consider:**
- (1) Target not found
- (2) All elements are target
- (3) Single element array