New Issue: Implement a method similar to the Python 'set.pop()'

18652, "bmcdonald3", "Implement a method similar to the Python 'set.pop()'", "2021-10-28T22:38:00Z"

Python supports a set.pop() method which removes and returns a random element from the set. This could be valuable when trying to use your set as an unordered queue and other cases.

Python pop: Python Set pop() Method