Skip to content
Snippets Groups Projects
Commit 5e928c1f authored by SAHIN Melis damla's avatar SAHIN Melis damla
Browse files

Compléter la classe Matrix

parent e6202dae
No related branches found
No related tags found
No related merge requests found
Pipeline #38370 failed
......@@ -58,7 +58,8 @@ public interface Matrix<T> extends Iterable<T> {
}
default Matrix<T> subMatrix(Coordinate corner, int width, int height){
return null ;
return new ListMatrix<>(width, height, new SubMatrixInitializer(this, corner));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment