Your question is Build a Custom Hash Set. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Implement a custom set data structure without using any built-in hash tables, trees, or set libraries. The data structure must support add(value), remove(value), contains(value), size(), and iteration over stored unique integers. Return the final contents of the set in sorted order after applying a sequence of operations.
def process_set_operations(operations):