In abstract set theory, a construction due to von Neumann represents the natural numbers by sets, as follows:
Write a function that receives an integer n and produces the representing set.
repSet(0) β []
repSet(1) β [[]]
repSet(2) β [[], [[]]]
repSet(3) β [[], [[]], [[], [[ ]]]]
[,].n < m precisely if the set representing n is contained in the set representing m.