Git-Leon před 6 roky
rodič
revize
63e0039d71
No account linked to committer's email
1 změnil soubory, kde provedl 9 přidání a 0 odebrání
  1. 9
    0
      README.md

+ 9
- 0
README.md Zobrazit soubor

@@ -228,3 +228,12 @@
228 228
 ### Part 11.2 - Test `Alumni` Class
229 229
 * Write a test class which ensures that each `Student` in the `Alumni` class has been taught `1200` hours upon injection of the `Alumni` dependency.
230 230
 * Ensure the `numberOfHoursTaught` has been evenly distributed amongst each of the instructors.
231
+
232
+* **Tip:** How to derive `numberOfHoursTaught` dynamically
233
+```java
234
+int numberOfInstructors = instructors.size();
235
+int numberOfStudents = students.size();
236
+double numberOfHoursToTeachEachStudent = 1200;
237
+double numberOfHoursToTeach = numberOfHoursToTeachEachStudent * numberOfStudents;
238
+double numberOfHoursPerInstructor = numberOfHoursToTeach / numberOfInstructors;
239
+```