-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChapter03.java
More file actions
28 lines (24 loc) · 838 Bytes
/
Chapter03.java
File metadata and controls
28 lines (24 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package chapter03;
import utils.ChapterTemplate;
import utils.SolutionTemplate;
import java.util.ArrayList;
/**
* @author Pasquale Convertini <pasqualeconvertini95@gmail.com>
* @github @pasquale95
* This file is subject to the terms and conditions defined in
* file 'LICENSE', which is part of this source code package.
*/
public class Chapter03 extends ChapterTemplate {
protected static ArrayList<SolutionTemplate> exercises;
public Chapter03() {
exercises = new ArrayList<>();
exercises.add(new chapter03.ex3_1.Solution());
exercises.add(new chapter03.ex3_2.Solution());
exercises.add(new chapter03.ex3_3.Solution());
exercises.add(new chapter03.ex3_4.Solution());
}
@Override
protected ArrayList<SolutionTemplate> getExercises() {
return exercises;
}
}