Challenge 3: Find Symmetric Pairs in an Array
Now, you will implement the symmetry detection algorithm by using hash tables.
We'll cover the following...
Problem statement
By definition, (a, b) and (c, d) are symmetric pairs if a = d
and ...