Advertisement
Guest User

Untitled

a guest
Feb 29th, 2020
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.16 KB | None | 0 0
  1. public List<int[]> getThem() {
  2.   List<int[]> list1 = new ArrayList<int[]>();
  3.   for (int[] x : theList)
  4.     if (x[0] == 4)
  5.       list1.add(x);
  6.   return list1;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement