leetcode/include/s0024_swap_nodes_in_pairs.hpp

12 lines
177 B
C++
Raw Permalink Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0024_SWAP_NODES_IN_PAIRS_HPP
#define S0024_SWAP_NODES_IN_PAIRS_HPP
2022-11-14 03:57:10 +00:00
2023-01-30 12:17:47 +00:00
#include "structures.hpp"
2022-11-14 03:57:10 +00:00
2022-11-30 10:20:36 +00:00
class S0024 {
2022-11-14 03:57:10 +00:00
public:
ListNode* swapPairs(ListNode* head);
};
#endif