12 lines
177 B
C++
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
|