I have a String array:
String[][] array = new String[7][6];
And I want to auto-fill everything with "[]", with one loop to basically set a default value. I tried to use Arrays.fill but it didn't work out well.
I have a String array:
String[][] array = new String[7][6];
And I want to auto-fill everything with "[]", with one loop to basically set a default value. I tried to use Arrays.fill but it didn't work out well.