blob: 037d6cbc155714f6e08708149d94eb76d351cd8d (
plain)
1
2
3
4
5
6
|
def check_greater(arr, number):
arr.sort()
if number > arr[-1]:
return ('Yes, the entered number is greater than those in the array')
else:
return ('No, entered number is less than those in the array')
|