jmackenzie91
@jmackenzie91
·
Implementing the Set Data Structure in PHP
Unlike Javascript, PHP does not have a native Set object built in. So let us implement one! ## What are Set objects good for In short: a Set is a data structure which only holds unique values. They c…