Solution for Copy List with Random Pointer The problem is to make a deep copy of linked list with 2 pointers in each node: to the next node and to a random node. Approach is stolen here. A question reg the 1st approach with HashMap.