Skip to content

Instantly share code, notes, and snippets.

@pbrewczynski
Created June 6, 2013 20:33
Show Gist options
  • Save pbrewczynski/5724691 to your computer and use it in GitHub Desktop.
Save pbrewczynski/5724691 to your computer and use it in GitHub Desktop.
private ArrayList<Double> threeGrades = new ArrayList<Double>();
private ArrayList<Double> twoGrades = new ArrayList<Double>();
private ArrayList<Double> oneGrades = new ArrayList<Double>();
private ArrayList<ArrayList<Double>> gradesListContainer = new ArrayList<ArrayList<Double>>(){{
add(oneGrades);
add(twoGrades);
add(threeGrades);
}};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment