Hi, right now I'm writing a code that needs to pass an Array "numbers" that contains a text file from my driver into my constructor. For example, for primitives it is easy:
public Stats (int a)
or even ArrayLists:
public Stats (ArrayList<Integer> a)
How would you pass an Array this way? Thank you.