Hi, I need help checking if a number is in the right increasing order. If anyone is a having a function to do this, kindly share
Edit: Increasing order and follow each other
'increasing right order
1,2,3,4,5
45,46,47,48
'Not Increasing in order
1,2,5,6,7 ''<- because 3,4 are missing
My...