Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Game of life Template
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
YAGOUBI Rim
Game of life Template
Compare revisions
main to main
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
saddem.r/game-of-life-template
Select target project
No results found
main
Select Git revision
Swap
Target
gnaves/game-of-life-template
Select target project
s20026898/tp-6
boukenze.b/jeu-de-la-vie-tp-3
b22015696/game-of-life-template
s23026062/sahin-game-of-life-template
m22023183/game-of-life-MALEK
z23012739/game-of-life-template
p23021107/poussardin-malo-game-of-life-template
o21225801/game-of-life-template
alaboure/game-fo-life-template
t22007439/game-of-life-toullec
b23021750/game-of-life
c22029830/game-of-life-template-rafi
b23025683/game-of-life-template-tp-6
gnaves/game-of-life-template
a22025223/game-of-life-template-cristel
f22024692/game-of-life-template-paolo-mathis-erwan
t21233923/game-fo-life-template
h21231335/game-fo-life-template
l22023519/game-of-life-template-salma
p23020787/game-of-life-template
b21232450/game-of-life-template
s22031458/game-of-life
n21223697/tp-4-ngom
a22027291/game-of-life-of-salim
k22029508/tp-4
s19033421/game-of-life-template
b21229750/jeu-de-la-vie-tp-3
saddem.r/game-of-life-template
l3_s3_infoamu/s3/programmation-2/game-fo-life-template
29 results
main
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Update ListMatrix.java
· 6bc95697
YAGOUBI Rim
authored
5 months ago
6bc95697
Update Matrix.java
· e2517c6c
YAGOUBI Rim
authored
5 months ago
e2517c6c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/matrix/ListMatrix.java
+0
-5
0 additions, 5 deletions
src/main/java/matrix/ListMatrix.java
src/main/java/matrix/Matrix.java
+3
-1
3 additions, 1 deletion
src/main/java/matrix/Matrix.java
with
3 additions
and
6 deletions
src/main/java/matrix/ListMatrix.java
View file @
e2517c6c
...
...
@@ -60,9 +60,4 @@ public class ListMatrix<T> implements Matrix<T> {
// TODO
}
public
Matrix
<
T
>
subMatrix
(
Coordinate
corner
,
int
width
,
int
height
)
{
// TODO
return
this
;
}
}
This diff is collapsed.
Click to expand it.
src/main/java/matrix/Matrix.java
View file @
e2517c6c
...
...
@@ -57,7 +57,9 @@ public interface Matrix<T> extends Iterable<T> {
this
.
set
(
coordinate
.
x
(),
coordinate
.
y
(),
newValue
);
}
Matrix
<
T
>
subMatrix
(
Coordinate
corner
,
int
width
,
int
height
);
default
Matrix
<
T
>
subMatrix
(
Coordinate
corner
,
int
width
,
int
height
){
return
null
;
}
/**
...
...
This diff is collapsed.
Click to expand it.