Skip to content

Instantly share code, notes, and snippets.

@gogeta95
Created March 3, 2018 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gogeta95/62dcf64e4097165e10aecc59ec1ca77e to your computer and use it in GitHub Desktop.
Save gogeta95/62dcf64e4097165e10aecc59ec1ca77e to your computer and use it in GitHub Desktop.
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