leetcode/include/s0203_remove_linked_list_el...

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

2022-12-01 13:22:53 +00:00
#ifndef S0203_REMOVE_LINKED_LIST_ELEMENTS_HPP
#define S0203_REMOVE_LINKED_LIST_ELEMENTS_HPP
2023-01-30 12:17:47 +00:00
#include "structures.hpp"
2022-12-01 13:22:53 +00:00
class S0203 {
public:
ListNode* removeElements(ListNode* head, int val);
};
#endif