Singleton ensures a class has exactly one instance, shared everywhere
it's constructed.
Implement ConfigManager so that every ConfigManager() call returns the
same object, using __new__ to intercept instantiation (the idiomatic
Python way — no need for a separate get_instance() method).
solve(operations) drives it through 'set' / 'get' / 'identity_check'
ops and returns the results.
Sample tests