I\'ve two arrays like
string[] a = { \"a\", \"b\", \"c\" }; string[] b = { \"a\", \"b\", \"c\" };
I need to compare the two arrays using LI
I think this will always be an O(n log n) operation, so I'd just sort both arrays and compare them e.g. using SequenceEqual.