A dictionary that refers to itself.
Consider this code:
other_hash = {}other_hash[2] = 10self_hash = {}self_hash[2] = other_hashself_hash[3] = 4self_hash["2"] = self_hash
Whats the output of self_hash["2"]["2"]["2"]["2"][2][2]?
Try it!
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.