Challenge: Find Symmetric Pairs in a List
Try to solve the Find Symmetric Pairs in a List problem.
We'll cover the following...
Statement
Given a list of pairs, nums, find all the symmetric pairs from it.
A symmetric pair is defined as a pair [a, b] such that both [a, b] and [b, a] exist in the list. ...