私はこれまでのところこのコードを持っています。値を出力しますが、位置を取得する方法を考えることはできません..
public static ArrayList defineSeq(){
for(int i=0; i<sparseRix.length; i++){
for(int j=0; j<sparseRix.length; j++){
int value =sparseRix[i][j];
int postion // What do i do here to get the postion
System.out.println("Value is " +value +"position" is +position);
}
}
return arrayList;
}