logo CodeStepByStep logo

stutter

Language/Type: PHP Queue collections

Write a function named stutter that accepts an array queue of integers as a parameter and replaces every element with two copies of itself.

For example, if an array queue named $q stores [1, 2, 3], the call of stutter(q); should change it to store [1, 1, 2, 2, 3, 3].

Constraints: Do not use any auxiliary collections as storage.

Function: Write a PHP function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.