**Problem Statement:**
Given the required input arguments, write an efficient algorithm to solve the **Alien Dictionary** problem. Implement the required logic as specified by standard definitions for this classic algorithmic challenge.
**Hint / Expected Approach:**
Build order-graph from adjacent word diffs + topo sort
**Edge Cases to Consider:**
- (1) Cyclic order (invalid)
- (2) All same characters
- (3) Prefix word after longer word (invalid)