Google Foobar Numbers Station
问题 Im trying to solve a google foobar challenge but I am stuck on how to change this to use recursion. any pointers would be helpful public static int[] answer(int[] l, int t) { // convert the array into a list List<Integer> list = new ArrayList<>(); for (int i : l) { list.add(i); } for (int i = 0; i < list.size(); i++) { Integer n = list.get(i); if (i >= 1) { Integer nMinus1 = list.get(i - 1); Integer nMinus2; Integer nMinus3; Integer nMinus4; Integer nMinus5; Integer nMinus6; if (n + nMinus1 =