Below is my failing code, Need help fixing the issue.
-------------------------------------------------------------------
public Object[] solution(ArrayList<>> listolists) {
// ↓↓↓↓ your code goes here ↓↓↓↓
return listolists.stream().filter(n -> n.size() % 2 ==1).map(n -> n.stream().map(num -> num * 10)).toArray();
}
Extracted text: Problem Statement: You are given an ArrayList of ArrayLists, each inner ArrayList contains integers. Convert everything into streams, the outer ArrayList and the inner ones. Filter over the inner streams, only return odd sized streams. Map each element of the inner streams to 10 times that element, returning a list. Return an array of lists. Random Input Given = [[11, -11, 6, 1, -2], [-3, -1, -2, 12], [0, -10, 7, -12], [7, 8, 7, -8], [2, -11, 12, -5, 4, 4, -10, -7, -7], [-7, -3, 0, 3, 7, -12, -4, 11, -4], I, [10], [-8, -8, 12], [-1, 9, -11, 4, -3, -12, 12, 2, Generate Example Solution = [[110, -110, 60, 10, -20], [20, -110, 120, -50, 40, 40, -100, -70, -70], [-70, -30, 0, 30, 70, -120, -40, 110, -40], [100], [-80, -80, 120], [-10, 90, -110, 40, -30, -120, 120, 20, 40], [-50,