Implement a list-based data structure that performs inserts and deletes in constant time.
Use an array and an auxiliary map from each value to its current index. The structure stores unique values. insert receives a value that is not present, and delete receives a value that is present. Deletion may change the order of remaining values.
Implement execute_operations(operations). Each operation is ["insert", value] or ["delete", value]. Return the final list in its current order after all operations.
def execute_operations(operations):