Ad
  • Default User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    Can you help me, my question is how can I ask the second length of a two dimensional array.

          for(int i = 0; i < before.length; i++){
            int[][] rotors = new int[before.length][before[i].length()];
          }
    

    This is how I see the creation of rotors. But the array will only work inside the loop, how can I fix this?