`Graph(1~>2, 2~>1).topologicalSort` returns `Right` instead of `Left` while `Graph(1~>2, 2~>3, 3~>4, 4~>2).topologicalSort` returns `Left`.
Graph(1~>2, 2~>1).topologicalSortreturns
Rightinstead ofLeftwhileGraph(1~>2, 2~>3, 3~>4, 4~>2).topologicalSortreturns
Left.