Guest User

Untitled

a guest
Jan 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. Part A
  2. public static ArrayList calculateModes(ArrayList p)
  3. {
  4. ArrayList modeList = new ArrayList;
  5. int max = findMax(tally);
  6. for(int i: tally.size())
  7. {
  8. modeList.add(i);
  9. }
  10. return modeList;
  11. }
Add Comment
Please, Sign In to add comment