This problem is somewhat similar to the 'coupon collectors problem' however it has a minor difference.
Given a fair die, what is the expected number of rolls to get an ordered sequence of all sides 1 - 6?
Example 1 The sequence of rolls: $4,3,5\left\{1\right\},5,4\left\{2\right\}5,4,\left\{3\right\},3,1,2,2\left\{4\right\},3,1,4,\left\{5\right\},\left\{6\right\}$ is of length 20
Example 2 The sequence of rolls: $\left\{1\right\},\left\{2\right\},2,\left\{3\right\},3,3,\left\{4\right\},4,4,4,\left\{5\right\},5,5,5,5,\left\{6\right\}$ is of length 16
Running a simulation, I obtain a result that $E(Rounds) \approx 36 $
How would one go about converting the solution from the coupon collectors problem to this kind of situation?