Constraints: The number of nodes in the list is the range [0, 5000]. -5000 <= Node.val <= 5000 1. 2. Idea Using a dummy head could make things easier. For each node in the list: Set node as dummy's successer Set dummy's successor to this node Code Iterative solution: class So...