**Problem Statement:**
Suppose an array of length `n` sorted in ascending order is rotated between `1` and `n` times. Given the sorted rotated array `nums` of unique elements, return the minimum element of this array.
**Hint / Expected Approach:**
Binary search pivot detection
**Edge Cases to Consider:**
- (1) Not rotated (already sorted)
- (2) Rotated n–1 times
- (3) Duplicates variant