Given an inteteger array A = [4, 10, 9, 6, 7, 5, 19, 3] find x, y, z indexes where x < y < z and A[x] < A[y] < A[z], if there are multiple answers then pick any of them.
Output: 0, 3, 4 indexes as the values are 4, 6, 7