I haven't figured out how to use the Kotlin split function to parse this series of edges into a List of Pairs.
(2, 4), (3, 6), (5, 1), (8, 9), (10, 12), (11, 7)
I could write a character by character parser with no problem - but it there a Kotlin solution to this parsing problem?