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...


[Java] Attached below is the probelm statement


-------------------------------------------------------------------------------------------


public Object[] solution(ArrayList<>> listolists) {
// ↓↓↓↓ your code goes here ↓↓↓↓
return null;
}


Problem Statement:<br>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<br>streams. Map each element of the inner streams to 10 times that element, returning a list. Return an array of lists.<br>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,<br>Generate Example<br>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,<br>

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,

Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here