Question: please finish the code in easiest method! int[] inci = {0, 1, 2, 1, 2, 1, 3, 1, 2, 1, 3}; int[] inc2 = {0,
int[] inci = {0, 1, 2, 1, 2, 1, 3, 1, 2, 1, 3}; int[] inc2 = {0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 2}; int[] inc3 = {4, 1, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8}; int[] inc4 = {3, 1, 2, 6, 3, 5, 7, 8, 8, 9, 10, 11, 12}; int[] inc5 = {1, 2, 3, 2, 3, 4, 3, 4, 5, 6, 4, 5, 6, 5, 6, 7}; int[] inch = {9, 8, 7, 6, 5, 4, 3, 2, 1); System.out.println("Testing LongestIncreasingSequence method :"); System.out.println(longestIncreasingSequence (inc1) + (should be 3) System.out.println(longestIncreasing Sequence(inc2) + " (should be 5) System.out.println(longest increasing Sequence(inc3) + " (should be 6) System.out.println(longest IncreasingSequence (inc4) + (should be 5)" System.out.println(longestIncreasingSequence(inc5) + " (should be 4)" System.out.println(longestIncreasingSequence(inch) + (should be 1)") System.out.println(); } //This method should return the
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
