39 Level-order traversal (BFS) Medium Trees

Return the level-order traversal of a binary tree as list of lists.

41 BFS shortest path (unweighted) Medium Graphs

Find shortest distances from a start node in an unweighted graph.

46 Snakes and ladders (BFS) Medium Graphs

Find minimum dice rolls to reach square 100 on a snakes-and-ladders board.

93 Binary tree right side view Medium Advanced Trees

Return values visible from the right side (rightmost node per level).

140 Binary Tree Right Side View Medium Trees

Given a binary tree, return the values visible from the right side (rightmost node at each level).

144 Rotting Oranges Medium Graphs

In a grid, fresh oranges rot when adjacent to rotten ones. Find the minimum minutes for all to rot.