leetcode/include/s0024_swap_nodes_in_pairs.hpp

12 lines
177 B
C++

#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