See all coding puzzles and patterns here.
Data Structure Description
A queue is a first-in first-out (FIFO) data structure that is used for various DSA (data structures & algorithms) problems.
For example, a queue is typically used to implement a breadth-first search.
Puzzles
Puzzle | Difficulty | External Link |
Composite Words | Hard |
Problems in BFS are also generally solved using queues.