two-stack-queue-push-always-o1

Status: IN

`push` always appends to `_in_stack` and never triggers a transfer, making it worst-case O(1) — not just amortized — unlike `pop` and `peek` which may trigger O(n) transfers.

Source: entries/2026/06/06/implement-queue-using-stacks-solution.md

Depended on by

JSON