Skip to content

Files

Latest commit

238dacf · May 30, 2020

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 30, 2020
Dec 1, 2019
Dec 1, 2019

<< [01] Interleave the elements of a stack using a queue >>

Given a stack of N elements, interleave the first half of the stack with the second half reversed using one other queue.

Example:

>>> coding_problem_01([1, 2, 3, 4, 5])
[1, 5, 2, 4, 3]

>>> coding_problem_01([1, 2, 3, 4, 5, 6])
[1, 6, 2, 5, 3, 4]