This is my array look like
Sn...class... Name...roll... admission
-
1 X 2 111 -
2 Y 8 147 -
3 Z 7 456 -
1 P 6 257 -
1 O 5 678 -
9 Y 3 789 -
4 I 19 679 -
5 H 14 101
Now I have to filter this data by class like how many student have in class 1 and then I only want to get the admission no. of all those students which belong to class 1. which is [111,257,678] in this case how can I do that beacsue when I use the filter method I am also getting the class like [[1,111],[1,257]] but I only want their admission no. without the class no.?