24. Swap Nodes in Pairs
Problem Statement Given a linked list, swap every two adjacent nodes and return its head. You must solve the problem without modifying the values in the list’s nodes (i.e., only the nodes themselves may be changed). Example: codeInput: head = [1,2,3,...



