Adding array to array list

Fixed its a simple error in this case. I’d created ArrayList<Float[]> edge =new ArrayList<Float[]>(); with a Float and not a float, so it then “a” needs to be Float a, and not float a.

2 Likes