Design and implement a RadixCache — a prefix-compressed tree that stores sequences of integers (not characters). Support insert(sequence), which automatically merges shared prefixes into internal nodes and splits an existing node when a new sequence only partially overlaps its edge. The round is staged as three milestones. Milestone 1, basic…