Download this file
16 lines (11 with data), 318 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 | public class ArrayArray implements java.io.Serializable {
public String[] array;
public static ArrayArray[] create(int n) {
ArrayArray[] a = new ArrayArray[n];
for(int i=0; i<a.length; i++) {
a[i]=new ArrayArray();
a[i].array=new String[] {String.valueOf(i), null};
}
return a;
}
}
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.