Your question is Find Missing Rotating Object. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Given a sequence of cube states represented as lists of three visible face labels [front, right, top], exactly one state is missing. Each next state is produced by rotating the same cube by a fixed operation. Return the missing state as a list of three labels.
def find_missing_rotation(states):