public interface Set<E> {
  void add(E element);
  void del(E element);
  boolean contains(E element);
}
