Every numbers must be less than 100
GIven a list, return True if every element are < 100.
Otherwise False.
Sample Code:
def hundredLess(l):
# Enter your logic here...
Examples:
Input: [-1,0,1,2,99.9]
Output: True
Explanation: Every number in the list are less than 100.
Input: [-1,0,1,2,999.9]
Output: False
Explanation: At least one of the elements is not less than 100.