Problem
Given a list of integers, determine if the list is in strictly increasing order. For example, (-3, 0, 6, 17) is in strictly increasing order, but (-6, 2, 2, 5) and (5, 7, 8, 6) are not.
Do not assume the range of values for list elements.
Assume first data is list size n, where n >= 0. (An empty list and a list of one element are trivially in strictly increasing order.)