Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 409 Bytes

File metadata and controls

7 lines (6 loc) · 409 Bytes

Given a list of integers, determine if each of the integers in the list is strictly bigger than the last. If so, return True, otherwise return False. The list will always be at least of length 2.

For example:

  • exponentialListCheck([1, 2, 3]) → True
  • exponentialListCheck([2, 1, 5, 10, 9]) → False
  • exponentialListCheck([10, 288, 300, 319]) → True
  • exponentialListCheck([1, 1, 3]) → False