13 lines
212 B
Plaintext
13 lines
212 B
Plaintext
|
import java.util.Vector;
|
||
|
import java.lang.Integer;
|
||
|
|
||
|
public class Matrix2 extends Vector<Integer> {
|
||
|
|
||
|
}
|
||
|
|
||
|
public class SubMatrix extends Matrix2 {
|
||
|
m(){
|
||
|
Vector<Integer> v = new Vector<Integer>();
|
||
|
v.add(1);
|
||
|
}
|
||
|
}
|