Here’s the problem statement: Given 2 arrays of integers, tell if the second array is a valid subsequence of the first i.e. if the second array has some/all adjacent/nonadjacent elements of the first array in the same order. For example: Array 1: [1, 12, 45, 79, 0, 5, 6, 32]Array 2: [12, 45, 79, 5, 32]Output:Continue reading “Scribble 9: Is Subsequence”