Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. HashMap<String, ArrayList<Team>> teams;
  2.  
  3. public void recordResult(String division, String teamA, String teamB, int teamAScore, int teamBScore)
  4. {
  5. List<Team> results = teams.get(division);
  6. for (String i : teams.keySet())
  7. {
  8. results = new ArrayList<Team>();
  9. results.add();
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement