I have two character arrays in Java:
orig_array and mix_array. I need to check if they are not equal.
orig_array
mix_array
Here is what I have so far:<
The while loop's block is only executed when the two arrays are not equal, so starting that block with the same equality check makes no sense. In other words, the line:
while
if (Arrays.equals(mix_team, orig_team))
...will always be false.
false