I want a function that performs swap operations on the elements in an array in a fashion that the resulting array is strictly increasing. For example numbers = [13,31,30] will produce output false because by swapping 13 to 31, 31 to 13 and 30 to 03 the array is not strictly increasing. if the initial array is already strictly increasing. No actions needed. You are allowed to choose any number from the array and swap any two digits in it.