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

Compléter la classe ConstantMatrixInitializer

parent 7f865e4e
No related branches found
No related tags found
No related merge requests found
Pipeline #38343 failed
package matrix;
public class ConstantMatrixInitializer<T> implements MatrixInitializer<T> {
// TODO: add instance variables
private final T constant ;
public ConstantMatrixInitializer(T constant) {
// TODO
}
this.constant = constant; }
@Override
public T initialValueAt(Coordinate coordinate) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment