Search:

Type: Posts; User: GregBrannon

Search: Search took 0.09 seconds.

  1. Re: How to copy one array into another and flip the values

    That doesn't seem like A LOT to me, but I suppose taking them one at a time is a good way to attack them. A bit time consuming, however.

    You should review the Arrays tutorial, how to declare and...
  2. Re: How to copy one array into another and flip the values

    In pseudocode:

    copyArray = new String[originalArray.length]
    for ( i = copyArray.length - 1, j = 0 ; j < copyArray.length ; i--, j++ )
    copyArray[j] = originalArray[i];
Results 1 to 2 of 2