Problem
Write a function called check_increasing that takes a list of words as its argument. The function should check that each word after the first is strictly longer than the previous one; it should return True if this is the case for all words, and False otherwise. If the argument list is empty or only contains one word, your function should return true.