A sorted array is such an array that its elements are arranged in a non-decreasing or non-increasing order, for example, {1, 1, 2, 4}
And the array {8, 7, 6, 222, 5, 4} will be sorted when the element "222" is deleted.
Provided that you can delete no more than one element (ie, 0 or 1), what will be the fastest algorithm for determining the "not completely" sorted array?