leetcode/include/s0203_remove_linked_list_el...

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