瀏覽代碼

Update README.md

Git-Leon 6 年之前
父節點
當前提交
63e0039d71
沒有帳戶連結到提交者的電子郵件
共有 1 個檔案被更改,包括 9 行新增0 行删除
  1. 9
    0
      README.md

+ 9
- 0
README.md 查看文件

@@ -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
+```