Given a list of integers, return True if the list is sorted in non-decreasing order, otherwise return False.
[3, 5, 7, 9, 9]
True
Bot