Easy
Implement a first-in-first-out (FIFO) queue using only two stacks. Implement MyQueue with push(x), pop() (removes and returns the front element), peek() (returns the front element), and empty().
Input: operations = ["MyQueue","push","push","peek","pop","empty"], values = [[],[1],[2],[],[],[]] Output: [null,null,null,1,1,false]