Brother Please end me

This commit is contained in:
Sage The DM 2024-10-30 16:02:50 +01:00
parent 390b59addf
commit 364fa45534
26 changed files with 378 additions and 2 deletions

View file

@ -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);
}
}

View file

@ -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;
}
}