#ifndef S0024_SWAP_NODES_IN_PAIRS_HPP #define S0024_SWAP_NODES_IN_PAIRS_HPP #include "structures.hpp" class S0024 { public: ListNode* swapPairs(ListNode* head); }; #endif