Created
March 3, 2018 17:36
-
-
Save gogeta95/62dcf64e4097165e10aecc59ec1ca77e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void copyNumbers(int source[], int destination[]) { | |
for (int i = 0; i < source.length; i++) { | |
destination[i] = source[i]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment