#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