leetcode/include/s0203_remove_linked_list_elements.hpp
2023-01-30 20:17:47 +08:00

12 lines
207 B
C++

#ifndef S0203_REMOVE_LINKED_LIST_ELEMENTS_HPP
#define S0203_REMOVE_LINKED_LIST_ELEMENTS_HPP
#include "structures.hpp"
class S0203 {
public:
ListNode* removeElements(ListNode* head, int val);
};
#endif