Всем привет! Подскажите, пожалуйста, куда копать? Спасибо!!
package com.javarush.task.pro.task05.task0511;
import java.util.Scanner;
/*
Создаем двумерный массив
*/
public class Solution {
public static void main(String[] args) {
//напишите тут ваш код
Scanner console = new Scanner(System.in);
int n = console.nextInt();
int[][] multiArray = new int [n][];
for (int i=0; i<n ; i++) {
int s = console.nextInt();
multiArray[i] = new int [s];
}
}
}