I\'ve been able to verify that the findUniqueWords does result in a sorted list. However, it does not return the list. Why?
findUniqueWords
list
def fin
list.sort sorts the list in place, i.e. it doesn't return a new list. Just write
list.sort
newList.sort() return newList