Brother Please end me
This commit is contained in:
parent
390b59addf
commit
364fa45534
26 changed files with 378 additions and 2 deletions
Binary file not shown.
Binary file not shown.
|
@ -52,8 +52,7 @@ public class App {
|
|||
// Maximum points for a long break: 10 points.
|
||||
// Plus 5 bonus points if the teachers are switching after.
|
||||
for (Teacher teacher : teachers) {
|
||||
// Implement logic to calculate points for each teacher
|
||||
teacher.setPoints(0); // Replace with actual calculation
|
||||
teacher.setPoints(0);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -33,4 +33,21 @@ public class Lesson {
|
|||
public String getDay() {
|
||||
return day;
|
||||
}
|
||||
|
||||
public boolean isBreak() {
|
||||
// Logic if it is between lessons
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean isBigBreak() {
|
||||
// is the break longer than 5 minutes
|
||||
// But was not the last lesson of the day
|
||||
// Is not Lunch break
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean isTeacherSwitch() {
|
||||
// is a another teacher in this room
|
||||
return false;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue