Implement `rotateQueue(values, k)` that dequeues and re-enqueues the front `k` times, returning the resulting queue. `k` may exceed the length.
+ 1 hidden test run on Submit.
Moving the front to the back k times rotates the queue left by k (after reducing k modulo the length).
Run your code to see results.