Copy Linked List with random pointer
Problemtc :O(n) where n is no. of nodes in the original linked list
Iterative approach:
⛶/*
// Definition for a Node.
class Node {
int val;
Node next;
Node random;
public Node(int v...