help with homework 91
Write a program that
1. reads the CDC_Covid19.txt file,
2. stores the jurisdiction and number of reported cases information as a Jurisdiction Object in an ArrayList:
jurisdictionsList.add( new Jurisdiction(“Alabama”, 2838) );
3. sorts the jurisdiction names based on the number of cases reported in decreasing order,
4. writes the sorted list as the number of cases and the jurisdiction name into a text file called CDC_Covid19_sorted.txt. The output format should be as follows:
number of cases + “, ” + jurisdiction
157073, New York
51027, New Jersey
…
16323, Florida
…
0, Palau

