Open ianwzhang1 opened 1 year ago
Sorry about this, but we've decided to strike this test from the necessary tests to pass. You can still work on it for bonus credit if you really want, but it will not impact your score negatively.
Method desc should be "Get the top three months with the highest number of claims". The list of months should return as:
We're updating the repo, documentation, and emailing out right now too
Clarifying per language which stub and test can be ignored based on this:
TestSet4.test12_getTopThreeMonthsWithHighestNumOfClaimsDesc
and SimpleDataTool.getTopThreeMonthsWithHighestNumOfClaimsDesc
Test 12 - getTopThreeMonthsWithHighestNumOfClaimsDesc
inside application.test.js
and getTopThreeMonthsWithHighestNumOfClaimsDesc
inside simpleDataTool.js
get_top_three_months_with_highest_num_of_claims_desc
in simple_data_tool.py
and test_get_top_three_months_with_highest_num_of_claims_desc
in test_simple_data_tool.py
Updated docstrings too to prevent further confusion.
The method
get_top_three_months_with_highest_num_of_claims_desc
and return hint in the documentation (three strings of month and year, descending order of highest claims
) implies that we need to find the months with the most number of claims, but the method description statesGets the top three months with the highest total claim cost
. Do we need to find the three months with the most disasters or with the highest claim cost?