leetcode/include/s0021_merge_two_sorted_list...

16 lines
246 B
C++
Raw Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0021_MERGE_TWO_SORTED_LISTS_HPP
#define S0021_MERGE_TWO_SORTED_LISTS_HPP
2022-11-05 02:02:49 +00:00
2022-11-30 10:20:36 +00:00
#include <limits>
2023-01-30 12:17:47 +00:00
#include "structures.hpp"
2022-11-30 10:20:36 +00:00
2023-01-30 12:17:47 +00:00
using namespace std;
2022-11-05 02:02:49 +00:00
2022-11-30 10:20:36 +00:00
class S0021 {
2022-11-05 02:02:49 +00:00
public:
ListNode* mergeTwoLists(ListNode* list1, ListNode* list2);
};
#endif