I have a linked list of arrays of strings.
List<String[]> list = new LinkedList<>();
Each element of this list contains elements of the form:
["word1", "example1", "2"]
How do I sort the list by the first string element in each array lexicographical?